diff tests/test-parseindex2.py @ 28753:0c2295384eea

py3: use absolute_import in test-parseindex2.py
author Robert Stanca <robert.stanca7@gmail.com>
date Mon, 04 Apr 2016 03:06:33 +0300
parents b502138f5faa
children 7e5744e8334c
line wrap: on
line diff
--- a/tests/test-parseindex2.py	Mon Apr 04 03:04:08 2016 +0300
+++ b/tests/test-parseindex2.py	Mon Apr 04 03:06:33 2016 +0300
@@ -3,8 +3,14 @@
 It also checks certain aspects of the parsers module as a whole.
 """
 
-from mercurial import parsers
-from mercurial.node import nullid, nullrev
+from __future__ import absolute_import
+from mercurial import (
+    parsers,
+)
+from mercurial.node import (
+    nullid,
+    nullrev,
+)
 import struct
 import subprocess
 import sys