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()