Show More
@@ -619,7 +619,7 b' def reposetup(ui, repo):' | |||
|
619 | 619 | ret = super(kwrepo, self).rollback(dryrun, force) |
|
620 | 620 | if not dryrun: |
|
621 | 621 | ctx = self['.'] |
|
622 |
modified, added = _preselect( |
|
|
622 | modified, added = _preselect(ctx.status(), changed) | |
|
623 | 623 | kwt.overwrite(ctx, modified, True, True) |
|
624 | 624 | kwt.overwrite(ctx, added, True, False) |
|
625 | 625 | return ret |
@@ -702,7 +702,7 b' def reposetup(ui, repo):' | |||
|
702 | 702 | # therefore compare nodes before and after |
|
703 | 703 | kwt.postcommit = True |
|
704 | 704 | ctx = repo['.'] |
|
705 |
wstatus = |
|
|
705 | wstatus = ctx.status() | |
|
706 | 706 | ret = orig(ui, repo, commitfunc, *pats, **opts) |
|
707 | 707 | recctx = repo['.'] |
|
708 | 708 | if ctx != recctx: |
General Comments 0
You need to be logged in to leave comments.
Login now