Skip to content

Commit cabd81b

Browse files
committed
Remove leftover tag name check in Hg.gettags()
1 parent d13a06e commit cabd81b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed/mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def gettags():
538538
refs = pquery([hg_cmd, 'tags']).strip().splitlines() or []
539539
for ref in refs:
540540
m = re.match(r'^(.+?)\s+(\d+)\:([a-f0-9]+)$', ref)
541-
if m and m.group(1) != 'tips':
541+
if m:
542542
tags.append([m.group(3), m.group(1)])
543543
return tags
544544

0 commit comments

Comments
 (0)