hgext/rebase.py
changeset 29205 a0939666b836
parent 29128 e521cb13d354
child 29358 6e83f5bbed8d
--- a/hgext/rebase.py	Thu May 19 00:20:38 2016 +0900
+++ b/hgext/rebase.py	Sat May 14 14:03:12 2016 +0900
@@ -18,6 +18,14 @@
 
 import errno
 import os
+
+from mercurial.i18n import _
+from mercurial.node import (
+    hex,
+    nullid,
+    nullrev,
+    short,
+)
 from mercurial import (
     bookmarks,
     cmdutil,
@@ -39,13 +47,6 @@
     scmutil,
     util,
 )
-from mercurial.node import (
-    hex,
-    nullid,
-    nullrev,
-    short,
-)
-from mercurial.i18n import _
 
 release = lock.release
 templateopts = commands.templateopts