Show More
@@ -301,6 +301,11 b' except ImportError:' | |||
|
301 | 301 | 'histedit.remaining': 'red bold', |
|
302 | 302 | 'ui.prompt': 'yellow', |
|
303 | 303 | 'log.changeset': 'yellow', |
|
304 | 'patchbomb.finalsummary': '', | |
|
305 | 'patchbomb.from': 'magenta', | |
|
306 | 'patchbomb.to': 'cyan', | |
|
307 | 'patchbomb.subject': 'green', | |
|
308 | 'patchbomb.diffstats': '', | |
|
304 | 309 | 'rebase.rebased': 'blue', |
|
305 | 310 | 'rebase.remaining': 'red bold', |
|
306 | 311 | 'resolve.resolved': 'green bold', |
@@ -483,14 +483,14 b' def patchbomb(ui, repo, *revs, **opts):' | |||
|
483 | 483 | replyto = getaddrs('Reply-To') |
|
484 | 484 | |
|
485 | 485 | if opts.get('diffstat') or opts.get('confirm'): |
|
486 | ui.write(_('\nFinal summary:\n\n')) | |
|
487 | ui.write(('From: %s\n' % sender)) | |
|
486 | ui.write(_('\nFinal summary:\n\n'), label='patchbomb.finalsummary') | |
|
487 | ui.write(('From: %s\n' % sender), label='patchbomb.from') | |
|
488 | 488 | for addr in showaddrs: |
|
489 | ui.write('%s\n' % addr) | |
|
489 | ui.write('%s\n' % addr, label='patchbomb.to') | |
|
490 | 490 | for m, subj, ds in msgs: |
|
491 | ui.write(('Subject: %s\n' % subj)) | |
|
491 | ui.write(('Subject: %s\n' % subj), label='patchbomb.subject') | |
|
492 | 492 | if ds: |
|
493 | ui.write(ds) | |
|
493 | ui.write(ds, label='patchbomb.diffstats') | |
|
494 | 494 | ui.write('\n') |
|
495 | 495 | if ui.promptchoice(_('are you sure you want to send (yn)?' |
|
496 | 496 | '$$ &Yes $$ &No')): |
General Comments 0
You need to be logged in to leave comments.
Login now