##// END OF EJS Templates
There was an extra space after 'hg id' when there are no tags.
Thomas Arendsen Hein -
r758:c5db9581 default
parent child Browse files
Show More
@@ -615,7 +615,8 b' def identify(ui, repo):'
615 parenttags = ['/'.join(tags)
615 parenttags = ['/'.join(tags)
616 for tags in map(repo.nodetags, parents) if tags]
616 for tags in map(repo.nodetags, parents) if tags]
617 # tags for multiple parents separated by ' + '
617 # tags for multiple parents separated by ' + '
618 output.append(' + '.join(parenttags))
618 if parenttags:
619 output.append(' + '.join(parenttags))
619
620
620 ui.write("%s\n" % ' '.join(output))
621 ui.write("%s\n" % ' '.join(output))
621
622
General Comments 0
You need to be logged in to leave comments. Login now