From daf845d7bdb93bb807b7e67fb5d222bf7882b55e Mon Sep 17 00:00:00 2001 From: ElementRobot Date: Tue, 16 May 2023 13:36:40 +0100 Subject: [PATCH] Fix changelog_head.py script to be Python 3 compatible --- scripts/changelog_head.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/changelog_head.py b/scripts/changelog_head.py index c7c1c0aea..dfe54b466 100755 --- a/scripts/changelog_head.py +++ b/scripts/changelog_head.py @@ -15,4 +15,4 @@ for line in sys.stdin: break found_first_header = True elif not re.match(r"^=+$", line) and len(line) > 0: - print line + print(line)