##// END OF EJS Templates
templatekw: allow tagtypes other than global in getlatesttags...
Andrew Shadura -
r20218:0c222573 default
parent child Browse files
Show More
@@ -117,7 +117,8 b' def getlatesttags(repo, ctx, cache):'
117 if rev in latesttags:
117 if rev in latesttags:
118 continue
118 continue
119 ctx = repo[rev]
119 ctx = repo[rev]
120 tags = [t for t in ctx.tags() if repo.tagtype(t) == 'global']
120 tags = [t for t in ctx.tags()
121 if (repo.tagtype(t) and repo.tagtype(t) != 'local')]
121 if tags:
122 if tags:
122 latesttags[rev] = ctx.date()[0], 0, ':'.join(sorted(tags))
123 latesttags[rev] = ctx.date()[0], 0, ':'.join(sorted(tags))
123 continue
124 continue
General Comments 0
You need to be logged in to leave comments. Login now