mercurial/commands.py
changeset 758 c5db9581bfa6
parent 757 7000825ef3ba
child 761 0fb498458905
--- a/mercurial/commands.py	Fri Jul 22 08:47:35 2005 +0100
+++ b/mercurial/commands.py	Fri Jul 22 08:58:16 2005 +0100
@@ -615,7 +615,8 @@
         parenttags = ['/'.join(tags)
                       for tags in map(repo.nodetags, parents) if tags]
         # tags for multiple parents separated by ' + '
-        output.append(' + '.join(parenttags))
+        if parenttags:
+            output.append(' + '.join(parenttags))
 
     ui.write("%s\n" % ' '.join(output))