[Python-checkins] cpython: #24277: Fix some incorrect backslashes in email example.

r.david.murray python-checkins at python.org
Wed Sep 7 21:48:33 EDT 2016


https://hg.python.org/cpython/rev/d82927c18931
changeset:   103286:d82927c18931
user:        R David Murray <rdmurray at bitdance.com>
date:        Wed Sep 07 21:48:21 2016 -0400
summary:
  #24277: Fix some incorrect backslashes in email example.

files:
  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
--- a/Doc/includes/email-alternative.py
+++ b/Doc/includes/email-alternative.py
@@ -30,13 +30,13 @@
 <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')

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list