From 059d1335649e0680026b712b1ec5f37dc7180909 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Mon, 24 Feb 2020 18:01:43 +0100 Subject: [PATCH] Wrap overly long lines Signed-off-by: Nils Philippsen --- rpmautospec/changelog.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rpmautospec/changelog.py b/rpmautospec/changelog.py index 6729d74..3065089 100644 --- a/rpmautospec/changelog.py +++ b/rpmautospec/changelog.py @@ -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()