equal
deleted
inserted
replaced
175 the merged version.""" |
175 the merged version.""" |
176 ui = repo.ui |
176 ui = repo.ui |
177 fd = fcd.path() |
177 fd = fcd.path() |
178 |
178 |
179 try: |
179 try: |
180 index = ui.promptchoice(_(" no tool found to merge %s\n" |
180 index = ui.promptchoice(_("no tool found to merge %s\n" |
181 "keep (l)ocal or take (o)ther?" |
181 "keep (l)ocal or take (o)ther?" |
182 "$$ &Local $$ &Other") % fd, 0) |
182 "$$ &Local $$ &Other") % fd, 0) |
183 choice = ['local', 'other'][index] |
183 choice = ['local', 'other'][index] |
184 |
184 |
185 if choice == 'other': |
185 if choice == 'other': |