Skip to content

Commit

Permalink
Fix notes generation bug for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Sep 22, 2020
1 parent 99d91b0 commit 545eaac
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bin/gen_releasenotes
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,10 @@ def main():
_LOGGER.debug(version)
new_version = bump_version(version)
_LOGGER.debug(new_version)
msg = BODY.format(
repo=arguments.repo,
version=version,
changes=changes,
)
print(
"Generated release notes for v{version}:\n{message}".format(
version=new_version,
message=msg,
message=changes,
)
)
else:
Expand Down

0 comments on commit 545eaac

Please sign in to comment.