mercurial/rewriteutil.py
changeset 43075 57875cf423c9
parent 40636 8c6329fa6038
child 43077 687b865b95ad
--- a/mercurial/rewriteutil.py	Fri Oct 04 15:53:45 2019 -0400
+++ b/mercurial/rewriteutil.py	Sat Oct 05 10:29:34 2019 -0400
@@ -16,6 +16,7 @@
     revset,
 )
 
+
 def precheck(repo, revs, action='rewrite'):
     """check if revs can be rewritten
     action is used to control the error message.
@@ -23,7 +24,7 @@
     Make sure this function is called after taking the lock.
     """
     if node.nullrev in revs:
-        msg = _("cannot %s null changeset") % (action)
+        msg = _("cannot %s null changeset") % action
         hint = _("no changeset checked out")
         raise error.Abort(msg, hint=hint)
 
@@ -32,7 +33,7 @@
 
     publicrevs = repo.revs('%ld and public()', revs)
     if publicrevs:
-        msg = _("cannot %s public changesets") % (action)
+        msg = _("cannot %s public changesets") % action
         hint = _("see 'hg help phases' for details")
         raise error.Abort(msg, hint=hint)
 
@@ -40,6 +41,7 @@
     if newunstable:
         raise error.Abort(_("cannot %s changeset with children") % action)
 
+
 def disallowednewunstable(repo, revs):
     """Checks whether editing the revs will create new unstable changesets and
     are we allowed to create them.