##// END OF EJS Templates
py3: make largefiles/wirestore.py use absolute_import
liscju -
r29316:28dfcf3d default
parent child Browse files
Show More
@@ -4,9 +4,12 b''
4 4 # GNU General Public License version 2 or any later version.
5 5
6 6 '''largefile store working over Mercurial's wire protocol'''
7 from __future__ import absolute_import
7 8
8 import lfutil
9 import remotestore
9 from . import (
10 lfutil,
11 remotestore,
12 )
10 13
11 14 class wirestore(remotestore.remotestore):
12 15 def __init__(self, ui, repo, remote):
@@ -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/wirestore.py not using absolute_import
14 13 hgext/share.py not using absolute_import
15 14 hgext/win32text.py not using absolute_import
16 15 i18n/check-translation.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now