##// END OF EJS Templates
tags: no need to check for valid nodes...
Idan Kamara -
r13893:1aea8667 default
parent child Browse files
Show More
@@ -4061,13 +4061,10 def tags(ui, repo):
4061 ui.write("%s\n" % t)
4061 ui.write("%s\n" % t)
4062 continue
4062 continue
4063
4063
4064 try:
4065 hn = hexfunc(n)
4064 hn = hexfunc(n)
4066 r = "%5d:%s" % (repo.changelog.rev(n), hn)
4065 r = "%5d:%s" % (repo.changelog.rev(n), hn)
4067 except error.LookupError:
4068 r = " ?:%s" % hn
4069 else:
4070 spaces = " " * (30 - encoding.colwidth(t))
4066 spaces = " " * (30 - encoding.colwidth(t))
4067
4071 if ui.verbose:
4068 if ui.verbose:
4072 if repo.tagtype(t) == 'local':
4069 if repo.tagtype(t) == 'local':
4073 tagtype = " local"
4070 tagtype = " local"
General Comments 0
You need to be logged in to leave comments. Login now