hgext/largefiles/wirestore.py
changeset 29316 28dfcf3d0ad3
parent 28439 b6e71f8af5b8
child 37632 6c55ce51d6c3
--- a/hgext/largefiles/wirestore.py	Tue May 10 15:14:41 2016 +0200
+++ b/hgext/largefiles/wirestore.py	Tue May 10 15:20:04 2016 +0200
@@ -4,9 +4,12 @@
 # GNU General Public License version 2 or any later version.
 
 '''largefile store working over Mercurial's wire protocol'''
+from __future__ import absolute_import
 
-import lfutil
-import remotestore
+from . import (
+    lfutil,
+    remotestore,
+)
 
 class wirestore(remotestore.remotestore):
     def __init__(self, ui, repo, remote):