##// 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 # GNU General Public License version 2 or any later version.
7 # GNU General Public License version 2 or any later version.
8
8
9 '''Overridden Mercurial commands and functions for the largefiles extension'''
9 '''Overridden Mercurial commands and functions for the largefiles extension'''
10 from __future__ import absolute_import
10
11
11 import os
12 import copy
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 from mercurial.i18n import _
15 from mercurial.i18n import _
17
16
18 import lfutil
17 from mercurial import (
19 import lfcommands
18 archival,
20 import storefactory
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 # -- Utility functions: commonly/repeatedly needed functionality ---------------
36 # -- Utility functions: commonly/repeatedly needed functionality ---------------
23
37
@@ -10,7 +10,6 b''
10 hgext/fsmonitor/pywatchman/pybser.py not using absolute_import
10 hgext/fsmonitor/pywatchman/pybser.py not using absolute_import
11 hgext/highlight/__init__.py not using absolute_import
11 hgext/highlight/__init__.py not using absolute_import
12 hgext/highlight/highlight.py not using absolute_import
12 hgext/highlight/highlight.py not using absolute_import
13 hgext/largefiles/overrides.py not using absolute_import
14 hgext/largefiles/proto.py not using absolute_import
13 hgext/largefiles/proto.py not using absolute_import
15 hgext/largefiles/remotestore.py not using absolute_import
14 hgext/largefiles/remotestore.py not using absolute_import
16 hgext/largefiles/reposetup.py not using absolute_import
15 hgext/largefiles/reposetup.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now