diff options
author | R David Murray <rdmurray@bitdance.com> | 2016-09-08 01:48:21 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2016-09-08 01:48:21 (GMT) |
commit | 1ba3e6dab109da6e7c31b81f263f2ba02aa7bb17 (patch) | |
tree | 76c998af2c5b6d1fd33d86f604abc875a8008a7a /Doc/includes | |
parent | bf24dfa07ce19a77a2175e877e148ef5444afc51 (diff) | |
download | cpython-1ba3e6dab109da6e7c31b81f263f2ba02aa7bb17.zip cpython-1ba3e6dab109da6e7c31b81f263f2ba02aa7bb17.tar.gz cpython-1ba3e6dab109da6e7c31b81f263f2ba02aa7bb17.tar.bz2 |
#24277: Fix some incorrect backslashes in email example.
Diffstat (limited to 'Doc/includes')
-rw-r--r-- | Doc/includes/email-alternative.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/includes/email-alternative.py b/Doc/includes/email-alternative.py index 321f727..2e142b1 100644 --- a/Doc/includes/email-alternative.py +++ b/Doc/includes/email-alternative.py @@ -30,13 +30,13 @@ msg.add_alternative("""\ <html> <head></head> <body> - <p>Salut!<\p> + <p>Salut!</p> <p>Cela ressemble à un excellent <a href="http://www.yummly.com/recipe/Roasted-Asparagus-Epicurious-203718> recipie </a> déjeuner. </p> - <img src="cid:{asparagus_cid}" \> + <img src="cid:{asparagus_cid}" /> </body> </html> """.format(asparagus_cid=asparagus_cid[1:-1]), subtype='html') |