Show More
@@ -422,7 +422,14 b' def getlfilestoupdate(oldstandins, newst' | |||||
422 | def getlfilestoupload(repo, missing, addfunc): |
|
422 | def getlfilestoupload(repo, missing, addfunc): | |
423 | for n in missing: |
|
423 | for n in missing: | |
424 | parents = [p for p in repo.changelog.parents(n) if p != node.nullid] |
|
424 | parents = [p for p in repo.changelog.parents(n) if p != node.nullid] | |
425 | ctx = repo[n] |
|
425 | ||
|
426 | oldlfstatus = repo.lfstatus | |||
|
427 | repo.lfstatus = False | |||
|
428 | try: | |||
|
429 | ctx = repo[n] | |||
|
430 | finally: | |||
|
431 | repo.lfstatus = oldlfstatus | |||
|
432 | ||||
426 | files = set(ctx.files()) |
|
433 | files = set(ctx.files()) | |
427 | if len(parents) == 2: |
|
434 | if len(parents) == 2: | |
428 | mc = ctx.manifest() |
|
435 | mc = ctx.manifest() |
General Comments 0
You need to be logged in to leave comments.
Login now