##// END OF EJS Templates
tags: explicitly grab list of dict keys...
Augie Fackler -
r35846:553a98a4 default
parent child Browse files
Show More
@@ -244,7 +244,7 b' def readlocaltags(ui, repo, alltags, tag'
244
244
245 # remove tags pointing to invalid nodes
245 # remove tags pointing to invalid nodes
246 cl = repo.changelog
246 cl = repo.changelog
247 for t in filetags.keys():
247 for t in list(filetags):
248 try:
248 try:
249 cl.rev(filetags[t][0])
249 cl.rev(filetags[t][0])
250 except (LookupError, ValueError):
250 except (LookupError, ValueError):
General Comments 0
You need to be logged in to leave comments. Login now