Wrap overly long lines

Signed-off-by: Nils Philippsen <nils@redhat.com>
This commit is contained in:
Nils Philippsen 2020-02-24 18:01:43 +01:00
parent 81c50d20d0
commit 059d133564

View file

@ -109,11 +109,13 @@ def main(args):
if last_commit:
print(
f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}> - {nvr[1]}-{nvr[2]}"
f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name}"
f" <{commit.author.email}> - {nvr[1]}-{nvr[2]}"
)
else:
print(
f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name} <{commit.author.email}>"
f"* {commit_dt.strftime('%a %b %d %Y')} {commit.author.name}"
f" <{commit.author.email}>"
)
print("- %s" % message)
print()