mercurial/commands.py
changeset 14874 d7b424a03627
parent 14853 4731d61cd36b
child 14906 7c3c8f37e84f
--- a/mercurial/commands.py	Wed Jul 13 16:58:51 2011 -0500
+++ b/mercurial/commands.py	Wed Jul 13 16:43:18 2011 -0500
@@ -1105,8 +1105,8 @@
     ctx = repo[node]
     parents = ctx.parents()
 
-    if bheads and not [x for x in parents
-                       if x.node() in bheads and x.branch() == branch]:
+    if (bheads and node not in bheads and not
+        [x for x in parents if x.node() in bheads and x.branch() == branch]):
         ui.status(_('created new head\n'))
         # The message is not printed for initial roots. For the other
         # changesets, it is printed in the following situations: