changeset 758:c5db9581bfa6

There was an extra space after 'hg id' when there are no tags.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 22 Jul 2005 08:58:16 +0100
parents 7000825ef3ba
children d2c52a502473
files mercurial/commands.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))