##// END OF EJS Templates
py3: make largefiles/overrides.py use absolute_import
liscju -
r29311:b76abae7 default
parent child Browse files
Show More
@@ -7,17 +7,31 b''
7 7 # GNU General Public License version 2 or any later version.
8 8
9 9 '''Overridden Mercurial commands and functions for the largefiles extension'''
10 from __future__ import absolute_import
10 11
11 import os
12 12 import copy
13 import os
13 14
14 from mercurial import hg, util, cmdutil, scmutil, match as match_, \
15 archival, pathutil, registrar, revset, error
16 15 from mercurial.i18n import _
17 16
18 import lfutil
19 import lfcommands
20 import storefactory
17 from mercurial import (
18 archival,
19 cmdutil,
20 error,
21 hg,
22 match as match_,
23 pathutil,
24 registrar,
25 revset,
26 scmutil,
27 util,
28 )
29
30 from . import (
31 lfcommands,
32 lfutil,
33 storefactory,
34 )
21 35
22 36 # -- Utility functions: commonly/repeatedly needed functionality ---------------
23 37
@@ -10,7 +10,6 b''
10 10 hgext/fsmonitor/pywatchman/pybser.py not using absolute_import
11 11 hgext/highlight/__init__.py not using absolute_import
12 12 hgext/highlight/highlight.py not using absolute_import
13 hgext/largefiles/overrides.py not using absolute_import
14 13 hgext/largefiles/proto.py not using absolute_import
15 14 hgext/largefiles/remotestore.py not using absolute_import
16 15 hgext/largefiles/reposetup.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now