We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b056945 commit 051b315Copy full SHA for 051b315
support/manage.py
@@ -238,7 +238,8 @@ def release(args):
238
for i, line in enumerate(fileinput.input(changelog_path, inplace=True)):
239
if i == 0:
240
version = re.match(r'# (.*) - TBD', line).group(1)
241
- line = version + ' - ' + datetime.date.today().isoformat() + '\n'
+ line = '# {} - {}\n'.format(
242
+ version, datetime.date.today().isoformat())
243
elif not is_first_section:
244
pass
245
elif line.startswith('#'):
0 commit comments