##// END OF EJS Templates
fix problem with uncompressed clone and python 2.3.
Vadim Gelfer -
r2623:d1cbfe9e default
parent child Browse files
Show More
@@ -40,7 +40,8 b' def walkrepo(root):'
40 40 yield x
41 41 # write manifest before changelog
42 42 meta = list(walk(root, False))
43 meta.sort(reverse=True)
43 meta.sort()
44 meta.reverse()
44 45 for x in meta:
45 46 yield x
46 47
General Comments 0
You need to be logged in to leave comments. Login now