Show More
@@ -3170,10 +3170,8 b' def _performrevert(repo, parents, ctx, a' | |||||
3170 | audit_path = pathutil.pathauditor(repo.root) |
|
3170 | audit_path = pathutil.pathauditor(repo.root) | |
3171 | for f in actions['forget'][0]: |
|
3171 | for f in actions['forget'][0]: | |
3172 | if interactive: |
|
3172 | if interactive: | |
3173 |
choice = |
|
3173 | choice = repo.ui.promptchoice( | |
3174 | repo.ui.promptchoice( |
|
3174 | _("forget added file %s (yn)?$$ &Yes $$ &No") % f) | |
3175 | _("forget added file %s (yn)?$$ &Yes $$ &No") |
|
|||
3176 | % f) |
|
|||
3177 | if choice == 0: |
|
3175 | if choice == 0: | |
3178 | repo.dirstate.drop(f) |
|
3176 | repo.dirstate.drop(f) | |
3179 | else: |
|
3177 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now