changeset 1240:b2a78b950a51

evolve: add the missing argument to a debug statement
author Matt Harbison <matt_harbison@yahoo.com>
date Mon, 29 Sep 2014 21:23:09 -0400
parents 160fd06312fc
children fb51113a1c08
files hgext/evolve.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/evolve.py
+++ b/hgext/evolve.py
@@ -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: