Skip to content

Commit

Permalink
Fix manage.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jan 2, 2022
1 parent 57bee9f commit fc8e3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def release(args):
# Update the version in the changelog.
title_len = 0
for line in fileinput.input(changelog_path, inplace=True):
if line.decode('utf-8').startswith(version + ' - TBD'):
if line.startswith(version + ' - TBD'):
line = version + ' - ' + datetime.date.today().isoformat()
title_len = len(line)
line += '\n'
Expand Down

0 comments on commit fc8e3de

Please sign in to comment.