commit | e8acc865a3f112b98417f676c897ca6ec2dac2c7 | [log] [tgz] |
---|---|---|
author | Andrey Doroschenko <dorosch.github.io@yandex.ru> | Fri Nov 15 12:03:47 2019 +0300 |
committer | Tal Einat <taleinat+github@gmail.com> | Fri Nov 15 11:03:46 2019 +0200 |
tree | db2a9c6f7a4a643a64bad3a540083b5f45b02caa | |
parent | b44ffc8b409fd539c5fb2b79385498e9fe168880 [diff] [blame] |
bpo-38351: Modernize email examples from %-formatting to f-strings (GH-17162)
diff --git a/Doc/includes/email-simple.py b/Doc/includes/email-simple.py index f69ef40..07dc30f 100644 --- a/Doc/includes/email-simple.py +++ b/Doc/includes/email-simple.py
@@ -12,7 +12,7 @@ # me == the sender's email address # you == the recipient's email address -msg['Subject'] = 'The contents of %s' % textfile +msg['Subject'] = f'The contents of {textfile}' msg['From'] = me msg['To'] = you