##// END OF EJS Templates
py3: make largefiles/localstore.py use absolute_import
liscju -
r29310:f89f83c8 default
parent child Browse files
Show More
@@ -7,11 +7,14 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 '''store class for local filesystem'''
9 '''store class for local filesystem'''
10 from __future__ import absolute_import
10
11
11 from mercurial.i18n import _
12 from mercurial.i18n import _
12
13
13 import lfutil
14 from . import (
14 import basestore
15 basestore,
16 lfutil,
17 )
15
18
16 class localstore(basestore.basestore):
19 class localstore(basestore.basestore):
17 '''localstore first attempts to grab files out of the store in the remote
20 '''localstore first attempts to grab files out of the store in the remote
@@ -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/localstore.py not using absolute_import
14 hgext/largefiles/overrides.py not using absolute_import
13 hgext/largefiles/overrides.py not using absolute_import
15 hgext/largefiles/proto.py not using absolute_import
14 hgext/largefiles/proto.py not using absolute_import
16 hgext/largefiles/remotestore.py not using absolute_import
15 hgext/largefiles/remotestore.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now