[PATCH 1 of 2 evolve-ext RESEND] evolve: add the missing argument to a debug statement

Matt Harbison matt_harbison at yahoo.com
Sat Nov 1 17:14:34 UTC 2014


# HG changeset patch
# User Matt Harbison <matt_harbison at yahoo.com>
# Date 1412040189 14400
#      Mon Sep 29 21:23:09 2014 -0400
# Node ID a277ece79f20a5dd406c8b4bafff1b58c47b053a
# Parent  9d85fd6e14744a5800584658a5a23eb87d62aee3
evolve: add the missing argument to a debug statement

diff --git a/hgext/evolve.py b/hgext/evolve.py
--- 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:


More information about the Mercurial-devel mailing list