##// END OF EJS Templates
py3: make largefiles/lfutil.py use absolute_import
liscju -
r29309:bfc10525 default
parent child Browse files
Show More
@@ -7,15 +7,24 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 '''largefiles utility code: must not import other modules in this package.'''
9 '''largefiles utility code: must not import other modules in this package.'''
10 from __future__ import absolute_import
10
11
12 import copy
11 import os
13 import os
12 import platform
14 import platform
13 import stat
15 import stat
14 import copy
16
17 from mercurial.i18n import _
15
18
16 from mercurial import dirstate, httpconnection, match as match_, util, scmutil
19 from mercurial import (
17 from mercurial.i18n import _
20 dirstate,
18 from mercurial import node, error
21 error,
22 httpconnection,
23 match as match_,
24 node,
25 scmutil,
26 util,
27 )
19
28
20 shortname = '.hglf'
29 shortname = '.hglf'
21 shortnameslash = shortname + '/'
30 shortnameslash = shortname + '/'
@@ -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/lfutil.py not using absolute_import
14 hgext/largefiles/localstore.py not using absolute_import
13 hgext/largefiles/localstore.py not using absolute_import
15 hgext/largefiles/overrides.py not using absolute_import
14 hgext/largefiles/overrides.py not using absolute_import
16 hgext/largefiles/proto.py not using absolute_import
15 hgext/largefiles/proto.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now