--- 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 ---------------
--- 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