diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
commit | 06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a (patch) | |
tree | 50701e842c19060c958da0118c59f993c0f84541 /Doc/includes | |
parent | 42bf48630293d31a54436b5aa36727f5f06837c1 (diff) | |
download | cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.zip cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.tar.gz cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.tar.bz2 |
Use https:// URLs when referring to python.org hosts.
Diffstat (limited to 'Doc/includes')
-rwxr-xr-x[-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 82d605e..ccecb42 100644..100755 --- a/Doc/includes/email-alternative.py +++ b/Doc/includes/email-alternative.py @@ -17,14 +17,14 @@ msg['From'] = me msg['To'] = you # Create the body of the message (a plain-text and an HTML version). -text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.python.org" +text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttps://www.python.org" html = """\ <html> <head></head> <body> <p>Hi!<br> How are you?<br> - Here is the <a href="http://www.python.org">link</a> you wanted. + Here is the <a href="https://www.python.org">link</a> you wanted. </p> </body> </html> |