We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a444d5 commit f286335Copy full SHA for f286335
scripts/tag_version
@@ -12,7 +12,6 @@ import subprocess
12
import sys
13
import textwrap
14
import yaml
15
-import toot
16
17
from datetime import date
18
from os import path
@@ -43,8 +42,8 @@ if not isinstance(release_date, date):
43
42
commit_message = f"toot {version}\n\n"
44
45
if description:
46
- lines = textwrap.wrap(description.strip(), 72)
47
- commit_message += "\n".join(lines) + "\n\n"
+ commit_message += textwrap.dedent(description)
+ commit_message += "\n\n"
48
49
for c in changes:
50
lines = textwrap.wrap(c, 70)
0 commit comments