##// END OF EJS Templates
tags: write tags cache deterministically...
Gregory Szorc -
r24143:7b09dbbb default
parent child Browse files
Show More
@@ -337,7 +337,7 b' def _writetagcache(ui, repo, heads, tagf'
337 # them local encoding on input, we would lose info writing them to
337 # them local encoding on input, we would lose info writing them to
338 # the cache.
338 # the cache.
339 cachefile.write('\n')
339 cachefile.write('\n')
340 for (name, (node, hist)) in cachetags.iteritems():
340 for (name, (node, hist)) in sorted(cachetags.iteritems()):
341 for n in hist:
341 for n in hist:
342 cachefile.write("%s %s\n" % (hex(n), name))
342 cachefile.write("%s %s\n" % (hex(n), name))
343 cachefile.write("%s %s\n" % (hex(node), name))
343 cachefile.write("%s %s\n" % (hex(node), name))
General Comments 0
You need to be logged in to leave comments. Login now