##// 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 7 # GNU General Public License version 2 or any later version.
8 8
9 9 '''largefiles utility code: must not import other modules in this package.'''
10 from __future__ import absolute_import
10 11
12 import copy
11 13 import os
12 14 import platform
13 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
17 from mercurial.i18n import _
18 from mercurial import node, error
19 from mercurial import (
20 dirstate,
21 error,
22 httpconnection,
23 match as match_,
24 node,
25 scmutil,
26 util,
27 )
19 28
20 29 shortname = '.hglf'
21 30 shortnameslash = shortname + '/'
@@ -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/lfutil.py not using absolute_import
14 13 hgext/largefiles/localstore.py not using absolute_import
15 14 hgext/largefiles/overrides.py not using absolute_import
16 15 hgext/largefiles/proto.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now