Show More
@@ -7316,10 +7316,11 b' def tags(ui, repo, **opts):' | |||
|
7316 | 7316 | for t, n in reversed(repo.tagslist()): |
|
7317 | 7317 | hn = hexfunc(n) |
|
7318 | 7318 | label = b'tags.normal' |
|
7319 |
tagtype = |
|
|
7320 |
if |
|
|
7321 |
|
|
|
7322 | tagtype = b'local' | |
|
7319 | tagtype = repo.tagtype(t) | |
|
7320 | if not tagtype or tagtype == b'global': | |
|
7321 | tagtype = b'' | |
|
7322 | else: | |
|
7323 | label = b'tags.' + tagtype | |
|
7323 | 7324 | |
|
7324 | 7325 | fm.startitem() |
|
7325 | 7326 | fm.context(repo=repo) |
General Comments 0
You need to be logged in to leave comments.
Login now