comparison hgext/patchbomb.py @ 12839:d85e30889f26 stable

patchbomb: fix stray backslash in docstring While both '\ ' and '\\ ' parse the same in Python, the difference trips up hggettext so that it cannot find the docstring in the source file and thus cannot write the right line number to i18n/hg.pot. While the line number is not essential, it can be used to lookup the original message.
author Martin Geisler <mg@lazybytes.net>
date Sat, 23 Oct 2010 18:33:57 +0200
parents 6bf8d48bec8e
children e71b2aa74ce3
comparison
equal deleted inserted replaced
12838:830be2c57626 12839:d85e30889f26
211 hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST 211 hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST
212 212
213 hg email -o -m mbox && # generate an mbox file... 213 hg email -o -m mbox && # generate an mbox file...
214 mutt -R -f mbox # ... and view it with mutt 214 mutt -R -f mbox # ... and view it with mutt
215 hg email -o -m mbox && # generate an mbox file ... 215 hg email -o -m mbox && # generate an mbox file ...
216 formail -s sendmail \ # ... and use formail to send from the mbox 216 formail -s sendmail \\ # ... and use formail to send from the mbox
217 -bm -t < mbox # ... using sendmail 217 -bm -t < mbox # ... using sendmail
218 218
219 Before using this command, you will need to enable email in your 219 Before using this command, you will need to enable email in your
220 hgrc. See the [email] section in hgrc(5) for details. 220 hgrc. See the [email] section in hgrc(5) for details.
221 ''' 221 '''