##// END OF EJS Templates
py3: make largefiles/remotestore.py use absolute_import
liscju -
r29313:0ccab84f default
parent child Browse files
Show More
@@ -5,17 +5,25
5 # GNU General Public License version 2 or any later version.
5 # GNU General Public License version 2 or any later version.
6
6
7 '''remote largefile store; the base class for wirestore'''
7 '''remote largefile store; the base class for wirestore'''
8 from __future__ import absolute_import
8
9
9 from mercurial import util, wireproto, error
10 from mercurial.i18n import _
10 from mercurial.i18n import _
11
11
12 from mercurial import (
13 error,
14 util,
15 wireproto,
16 )
17
18 from . import (
19 basestore,
20 lfutil,
21 localstore,
22 )
23
12 urlerr = util.urlerr
24 urlerr = util.urlerr
13 urlreq = util.urlreq
25 urlreq = util.urlreq
14
26
15 import lfutil
16 import basestore
17 import localstore
18
19 class remotestore(basestore.basestore):
27 class remotestore(basestore.basestore):
20 '''a largefile store accessed over a network'''
28 '''a largefile store accessed over a network'''
21 def __init__(self, ui, repo, url):
29 def __init__(self, ui, repo, url):
@@ -10,7 +10,6
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/remotestore.py not using absolute_import
14 hgext/largefiles/reposetup.py not using absolute_import
13 hgext/largefiles/reposetup.py not using absolute_import
15 hgext/largefiles/uisetup.py not using absolute_import
14 hgext/largefiles/uisetup.py not using absolute_import
16 hgext/largefiles/wirestore.py not using absolute_import
15 hgext/largefiles/wirestore.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now