# HG changeset patch # User liscju # Date 1462883196 -7200 # Node ID b76abae75161ef7501c5d8c4c1a11343b156d13d # Parent f89f83c8393a6f03b1554e3b01212e40ebb42381 py3: make largefiles/overrides.py use absolute_import diff -r f89f83c8393a -r b76abae75161 hgext/largefiles/overrides.py --- a/hgext/largefiles/overrides.py Tue May 10 14:20:51 2016 +0200 +++ b/hgext/largefiles/overrides.py Tue May 10 14:26:36 2016 +0200 @@ -7,17 +7,31 @@ # GNU General Public License version 2 or any later version. '''Overridden Mercurial commands and functions for the largefiles extension''' +from __future__ import absolute_import -import os import copy +import os -from mercurial import hg, util, cmdutil, scmutil, match as match_, \ - archival, pathutil, registrar, revset, error from mercurial.i18n import _ -import lfutil -import lfcommands -import storefactory +from mercurial import ( + archival, + cmdutil, + error, + hg, + match as match_, + pathutil, + registrar, + revset, + scmutil, + util, +) + +from . import ( + lfcommands, + lfutil, + storefactory, +) # -- Utility functions: commonly/repeatedly needed functionality --------------- diff -r f89f83c8393a -r b76abae75161 tests/test-check-py3-compat.t --- a/tests/test-check-py3-compat.t Tue May 10 14:20:51 2016 +0200 +++ b/tests/test-check-py3-compat.t Tue May 10 14:26:36 2016 +0200 @@ -10,7 +10,6 @@ hgext/fsmonitor/pywatchman/pybser.py not using absolute_import hgext/highlight/__init__.py not using absolute_import hgext/highlight/highlight.py not using absolute_import - hgext/largefiles/overrides.py not using absolute_import hgext/largefiles/proto.py not using absolute_import hgext/largefiles/remotestore.py not using absolute_import hgext/largefiles/reposetup.py not using absolute_import