We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a39597 commit e0b73f1Copy full SHA for e0b73f1
scripts/release.py
@@ -128,7 +128,7 @@ def publish_release(args: argparse.Namespace) -> None:
128
# get message from /messages/<version>.txt
129
text = get_message(os.path.join(MESSAGE_PATH, version + '.txt'))
130
# strip message header (version)
131
- text = text[text.find('\n') + 1:]
+ text = text[text.find('\n') + 1:].strip()
132
# built the JSON request body
133
data = json.dumps({
134
"tag_name": version,
0 commit comments