Show More
@@ -422,7 +422,14 b' def getlfilestoupdate(oldstandins, newst' | |||
|
422 | 422 | def getlfilestoupload(repo, missing, addfunc): |
|
423 | 423 | for n in missing: |
|
424 | 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 | 433 | files = set(ctx.files()) |
|
427 | 434 | if len(parents) == 2: |
|
428 | 435 | mc = ctx.manifest() |
General Comments 0
You need to be logged in to leave comments.
Login now