##// END OF EJS Templates
py3: make largefiles/lfcommands.py use absolute_import
liscju -
r29308:8c378a7d default
parent child Browse files
Show More
@@ -7,20 +7,38 b''
7 7 # GNU General Public License version 2 or any later version.
8 8
9 9 '''High-level command function for lfconvert, plus the cmdtable.'''
10 from __future__ import absolute_import
10 11
11 import os, errno
12 import errno
13 import os
12 14 import shutil
13 15
14 from mercurial import util, match as match_, hg, node, context, error, \
15 cmdutil, scmutil, commands
16 16 from mercurial.i18n import _
17 from mercurial.lock import release
18 17
19 from hgext.convert import convcmd
20 from hgext.convert import filemap
18 from mercurial import (
19 cmdutil,
20 commands,
21 context,
22 error,
23 hg,
24 lock,
25 match as match_,
26 node,
27 scmutil,
28 util,
29 )
21 30
22 import lfutil
23 import storefactory
31 from ..convert import (
32 convcmd,
33 filemap,
34 )
35
36 from . import (
37 lfutil,
38 storefactory
39 )
40
41 release = lock.release
24 42
25 43 # -- Commands ----------------------------------------------------------
26 44
@@ -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/lfcommands.py not using absolute_import
14 13 hgext/largefiles/lfutil.py not using absolute_import
15 14 hgext/largefiles/localstore.py not using absolute_import
16 15 hgext/largefiles/overrides.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now