summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2017-07-06 11:41:21 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2017-07-06 11:41:21 -0400
commitd8bd09faa243a270010ff78589bd705ff627d79e (patch)
tree66c605dc5c191043355e903ebff343846dd22677
parent380e6018daf15ecb9cea0b3dcd3576a581ea411d (diff)
downloadwebsite-d8bd09faa243a270010ff78589bd705ff627d79e.tar.gz
Tweak announcement wording and spacing a bit
Just visual improvement both in the code and in the announcement. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rwxr-xr-xplugins/releases.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/releases.py b/plugins/releases.py
index 95fa6fb..420d3a6 100755
--- a/plugins/releases.py
+++ b/plugins/releases.py
@@ -257,22 +257,22 @@ class KernelReleases():
if 'SMTP_SERVER' in os.environ.keys():
smtp_server = os.environ['SMTP_SERVER']
- body = ("Linux kernel version %s%s has been released. It is available from:\r\n" % (release, eol)
- + "\r\n"
- + "Full source: %s" % source)
+ body = ( "Linux kernel version %s%s is now available:\r\n" % (release, eol)
+ + "\r\n"
+ + "Full source: %s" % source)
if patch is not None:
- body += ("\r\n"
- + "Patch: %s" % patch)
+ body += ( "\r\n"
+ + "Patch: %s" % patch)
if sign is not None:
- body += ("\r\n"
- + "PGP Signature: %s" % sign)
+ body += ( "\r\n"
+ + "PGP Signature: %s" % sign)
if diffview is not None:
- body += ("\r\n\r\n"
- + "You can view the summary of the changes at the following URL:\r\n"
- + "%s\r\n" % diffview)
+ body += ( "\r\n\r\n"
+ + "You can view the summary of the changes at the following URL:\r\n"
+ + "%s\r\n\r\n" % diffview)
msg = MIMEText(body)
msg['Subject'] = "Linux kernel %s released" % release