From fc8e3de7dbdcf13f6ecb34e5c2e7d1b7b5128880 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 2 Jan 2022 08:22:25 -0800 Subject: [PATCH] Fix manage.py script --- support/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/manage.py b/support/manage.py index 597e7758..75c540e3 100755 --- a/support/manage.py +++ b/support/manage.py @@ -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'