hgext3rd/topic/revset.py
changeset 1935 11d740319280
parent 1923 1c6f4970f3e8
child 1943 cd56f4d8b5a3
--- a/hgext3rd/topic/revset.py	Wed Mar 30 03:44:59 2016 -0700
+++ b/hgext3rd/topic/revset.py	Wed Mar 30 03:45:10 2016 -0700
@@ -1,9 +1,17 @@
-from mercurial import error
-from mercurial import revset
-from mercurial import util
+from __future__ import absolute_import
+
 from mercurial.i18n import _
+from mercurial import (
+    error,
+    revset,
+    util,
+)
 
-from . import constants, destination, stack
+from . import (
+    constants,
+    destination,
+    stack,
+)
 
 try:
     mkmatcher = revset._stringmatcher