hgext/largefiles/proto.py
changeset 29312 29139be0ccc7
parent 28883 032c4c2f802a
child 30181 7356e6b1f5b8
--- a/hgext/largefiles/proto.py	Tue May 10 14:26:36 2016 +0200
+++ b/hgext/largefiles/proto.py	Tue May 10 14:41:58 2016 +0200
@@ -2,18 +2,27 @@
 #
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
+from __future__ import absolute_import
 
 import os
 import re
 
-from mercurial import error, httppeer, util, wireproto
 from mercurial.i18n import _
 
+from mercurial import (
+    error,
+    httppeer,
+    util,
+    wireproto,
+)
+
+from . import (
+    lfutil,
+)
+
 urlerr = util.urlerr
 urlreq = util.urlreq
 
-import lfutil
-
 LARGEFILES_REQUIRED_MSG = ('\nThis repository uses the largefiles extension.'
                            '\n\nPlease enable it in your Mercurial config '
                            'file.\n')