##// END OF EJS Templates
Fixed problems with extra spaces around tags in .hgtags...
Thomas Arendsen Hein -
r385:e9e1efd5 default
parent child Browse files
Show More
@@ -406,8 +406,8 b' class localrepository:'
406 for r in h:
406 for r in h:
407 for l in fl.revision(r).splitlines():
407 for l in fl.revision(r).splitlines():
408 if l:
408 if l:
409 n, k = l.split(" ")
409 n, k = l.split(" ", 1)
410 self.tagscache[k] = bin(n)
410 self.tagscache[k.strip()] = bin(n)
411 except KeyError: pass
411 except KeyError: pass
412 self.tagscache['tip'] = self.changelog.tip()
412 self.tagscache['tip'] = self.changelog.tip()
413
413
General Comments 0
You need to be logged in to leave comments. Login now