diff hgext/largefiles/localstore.py @ 29310:f89f83c8393a

py3: make largefiles/localstore.py use absolute_import
author liscju <piotr.listkiewicz@gmail.com>
date Tue, 10 May 2016 14:20:51 +0200
parents 207c0db08953
children d2c375071d16
line wrap: on
line diff
--- a/hgext/largefiles/localstore.py	Tue May 10 15:09:22 2016 +0200
+++ b/hgext/largefiles/localstore.py	Tue May 10 14:20:51 2016 +0200
@@ -7,11 +7,14 @@
 # GNU General Public License version 2 or any later version.
 
 '''store class for local filesystem'''
+from __future__ import absolute_import
 
 from mercurial.i18n import _
 
-import lfutil
-import basestore
+from . import (
+    basestore,
+    lfutil,
+)
 
 class localstore(basestore.basestore):
     '''localstore first attempts to grab files out of the store in the remote