hgext/obsolete.py
branchmercurial-3.6
changeset 1761 e2585c6cdbdc
parent 1757 86e71a0b3319
--- a/hgext/obsolete.py	Fri Oct 28 16:34:57 2016 +0200
+++ b/hgext/obsolete.py	Sat Oct 29 15:01:41 2016 +0200
@@ -13,7 +13,7 @@
 were such user.
 """
 
-from mercurial import util
+from mercurial import error
 
 try:
     from mercurial import obsolete
@@ -24,9 +24,9 @@
 import json
 
 from mercurial import cmdutil
-from mercurial import error
 from mercurial.i18n import _
 from mercurial.node import bin, nullid
+from mercurial import util
 
 
 #####################################################################