mercurial/manifest.py
changeset 27502 2df7f5c09c34
parent 27466 f888676a23d0
child 28203 7297e9e13a8a
--- a/mercurial/manifest.py	Mon Dec 21 21:32:58 2015 -0800
+++ b/mercurial/manifest.py	Mon Dec 21 21:35:46 2015 -0800
@@ -5,11 +5,21 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-from i18n import _
-import mdiff, parsers, error, revlog, util
-import array, struct
+from __future__ import absolute_import
+
+import array
+import heapq
 import os
-import heapq
+import struct
+
+from .i18n import _
+from . import (
+    error,
+    mdiff,
+    parsers,
+    revlog,
+    util,
+)
 
 propertycache = util.propertycache