py3: make largefiles/overrides.py use absolute_import
authorliscju <piotr.listkiewicz@gmail.com>
Tue, 10 May 2016 14:26:36 +0200
changeset 29311 b76abae75161
parent 29310 f89f83c8393a
child 29312 29139be0ccc7
py3: make largefiles/overrides.py use absolute_import
hgext/largefiles/overrides.py
tests/test-check-py3-compat.t
--- 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