##// END OF EJS Templates
py3: make largefiles/reposetup.py use absolute_import
liscju -
r29314:bde283a1 default
parent child Browse files
Show More
@@ -7,14 +7,23 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 '''setup for largefiles repositories: reposetup'''
9 '''setup for largefiles repositories: reposetup'''
10 from __future__ import absolute_import
11
10 import copy
12 import copy
11
13
12 from mercurial import error, match as match_, error
13 from mercurial.i18n import _
14 from mercurial.i18n import _
14 from mercurial import scmutil, localrepo
15
15
16 import lfcommands
16 from mercurial import (
17 import lfutil
17 error,
18 localrepo,
19 match as match_,
20 scmutil,
21 )
22
23 from . import (
24 lfcommands,
25 lfutil,
26 )
18
27
19 def reposetup(ui, repo):
28 def reposetup(ui, repo):
20 # wire repositories should be given new wireproto functions
29 # wire repositories should be given new wireproto functions
@@ -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/reposetup.py not using absolute_import
14 hgext/largefiles/uisetup.py not using absolute_import
13 hgext/largefiles/uisetup.py not using absolute_import
15 hgext/largefiles/wirestore.py not using absolute_import
14 hgext/largefiles/wirestore.py not using absolute_import
16 hgext/share.py not using absolute_import
15 hgext/share.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now