Show More
@@ -523,7 +523,8 b' def browserevs(ui, repo, nodes, opts):' | |||
|
523 | 523 | displayer.show(repo[node]) |
|
524 | 524 | action = None |
|
525 | 525 | while not action: |
|
526 |
|
|
|
526 | choice = ui.promptchoice(prompt) | |
|
527 | action = 'ynmpcq?'[choice:choice + 1] | |
|
527 | 528 | if action == '?': |
|
528 | 529 | for c, t in ui.extractchoices(prompt)[1]: |
|
529 | 530 | ui.write('%s: %s\n' % (c, t)) |
@@ -1695,7 +1695,7 b' class gitsubrepo(abstractsubrepo):' | |||
|
1695 | 1695 | tab = line.find('\t') |
|
1696 | 1696 | if tab == -1: |
|
1697 | 1697 | continue |
|
1698 | status, f = line[tab - 1], line[tab + 1:] | |
|
1698 | status, f = line[tab - 1:tab], line[tab + 1:] | |
|
1699 | 1699 | if status == 'M': |
|
1700 | 1700 | modified.append(f) |
|
1701 | 1701 | elif status == 'A': |
General Comments 0
You need to be logged in to leave comments.
Login now