# HG changeset patch # User Thomas Arendsen Hein # Date 1173030008 -3600 # Node ID 49d7a035235bae58517caa0e303ce1c6b5b03261 # Parent a9ee6c53af8db43a746a91e9f015677598a5eb7e patchbomb: Allow to specify subject of single-patch-series (issue475) diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -155,12 +155,14 @@ def patchbomb(ui, repo, *revs, **opts): else: body += '\n'.join(patch) msg = email.MIMEText.MIMEText(body) + + subj = desc[0].strip() + if subj.endswith('.'): subj = subj[:-1] if total == 1: - subj = '[PATCH] ' + desc[0].strip() + subj = '[PATCH] ' + (opts['subject'] or subj) else: tlen = len(str(total)) - subj = '[PATCH %0*d of %d] %s' % (tlen, idx, total, desc[0].strip()) - if subj.endswith('.'): subj = subj[:-1] + subj = '[PATCH %0*d of %d] %s' % (tlen, idx, total, subj) msg['Subject'] = subj msg['X-Mercurial-Node'] = node return msg @@ -309,7 +311,7 @@ cmdtable = { ('', 'plain', None, 'omit hg patch header'), ('n', 'test', None, 'print messages that would be sent'), ('m', 'mbox', '', 'write messages to mbox file instead of sending them'), - ('s', 'subject', '', 'subject of introductory message'), + ('s', 'subject', '', 'subject of first message (intro or single patch)'), ('t', 'to', [], 'email addresses of recipients')], "hg email [OPTION]... [REV]...") }