##// END OF EJS Templates
lfs: explicitly name a key when sorting blob pointers...
Matt Harbison -
r39985:e1f97179 default
parent child Browse files
Show More
@@ -333,7 +333,7 b' def extractpointers(repo, revs):'
333 for p in pointersfromctx(ctx).values():
333 for p in pointersfromctx(ctx).values():
334 pointers[p.oid()] = p
334 pointers[p.oid()] = p
335 progress.increment()
335 progress.increment()
336 return sorted(pointers.values())
336 return sorted(pointers.values(), key=lambda p: p.oid())
337
337
338 def pointerfromctx(ctx, f, removed=False):
338 def pointerfromctx(ctx, f, removed=False):
339 """return a pointer for the named file from the given changectx, or None if
339 """return a pointer for the named file from the given changectx, or None if
@@ -876,8 +876,6 b' avoids the corrupt lfs object in the ori'
876 pushing to dest
876 pushing to dest
877 searching for changes
877 searching for changes
878 lfs: found 22f66a3fc0b9bf3f012c814303995ec07099b3a9ce02a7af84b5970811074a3b in the local lfs store
878 lfs: found 22f66a3fc0b9bf3f012c814303995ec07099b3a9ce02a7af84b5970811074a3b in the local lfs store
879 lfs: found 89b6070915a3d573ff3599d1cda305bc5e38549b15c4847ab034169da66e1ca8 in the local lfs store
880 lfs: found b1a6ea88da0017a0e77db139a54618986e9a2489bee24af9fe596de9daac498c in the local lfs store
881 abort: detected corrupt lfs object: 66100b384bf761271b407d79fc30cdd0554f3b2c5d944836e936d584b88ce88e
879 abort: detected corrupt lfs object: 66100b384bf761271b407d79fc30cdd0554f3b2c5d944836e936d584b88ce88e
882 (run hg verify)
880 (run hg verify)
883 [255]
881 [255]
General Comments 0
You need to be logged in to leave comments. Login now