##// END OF EJS Templates
py3: make largefiles/basestore.py use absolute_import
liscju -
r29307:67999697 default
parent child Browse files
Show More
@@ -7,11 +7,13 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 '''base class for store implementations and store-related utility code'''
9 '''base class for store implementations and store-related utility code'''
10 from __future__ import absolute_import
10
11
11 from mercurial import util, node
12 from mercurial.i18n import _
12 from mercurial.i18n import _
13
13
14 import lfutil
14 from mercurial import node, util
15
16 from . import lfutil
15
17
16 class StoreError(Exception):
18 class StoreError(Exception):
17 '''Raised when there is a problem getting files from or putting
19 '''Raised when there is a problem getting files from or putting
@@ -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/basestore.py not using absolute_import
14 hgext/largefiles/lfcommands.py not using absolute_import
13 hgext/largefiles/lfcommands.py not using absolute_import
15 hgext/largefiles/lfutil.py not using absolute_import
14 hgext/largefiles/lfutil.py not using absolute_import
16 hgext/largefiles/localstore.py not using absolute_import
15 hgext/largefiles/localstore.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now