evolve: add the missing argument to a debug statement
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 29 Sep 2014 21:23:09 -0400
changeset 1144 b2a78b950a51
parent 1143 160fd06312fc
child 1145 fb51113a1c08
evolve: add the missing argument to a debug statement
hgext/evolve.py
--- a/hgext/evolve.py	Tue Oct 28 18:06:28 2014 -0700
+++ b/hgext/evolve.py	Mon Sep 29 21:23:09 2014 -0400
@@ -1321,7 +1321,8 @@
     # search of a parent which is not killed
     while not newer or newer == [()]:
         ui.debug("stabilize target %s is plain dead,"
-                 " trying to stabilize on its parent")
+                 " trying to stabilize on its parent" %
+                 obs)
         obs = obs.parents()[0]
         newer = obsolete.successorssets(repo, obs.node())
     if len(newer) > 1: