##// END OF EJS Templates
changegroup: store old heads as a set...
Gregory Szorc -
r31587:ed5b2587 4.1.2 stable
parent child Browse files
Show More
@@ -293,7 +293,7 b' class cg1unpacker(object):'
293 # will not see an inconsistent view
293 # will not see an inconsistent view
294 cl = repo.changelog
294 cl = repo.changelog
295 cl.delayupdate(tr)
295 cl.delayupdate(tr)
296 oldheads = cl.heads()
296 oldheads = set(cl.heads())
297
297
298 trp = weakref.proxy(tr)
298 trp = weakref.proxy(tr)
299 # pull off the changeset group
299 # pull off the changeset group
General Comments 0
You need to be logged in to leave comments. Login now