From 1c3ed71d3625d909eb664ed1551e1a7efe716eb3 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Sat, 25 Jul 2020 23:19:10 +0200 Subject: [PATCH] Fix bump-version script --- script/bump-version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bump-version.py b/script/bump-version.py index b59f066db4..ebc73c5700 100755 --- a/script/bump-version.py +++ b/script/bump-version.py @@ -45,9 +45,9 @@ class Version: def sub(path, pattern, repl, expected_count=1): with open(path) as fh: content = fh.read() - content, count = re.subn(pattern, repl, content, re.MULTILINE) + content, count = re.subn(pattern, repl, content, flags=re.MULTILINE) if expected_count is not None: - assert count == expected_count + assert count == expected_count, f"Pattern {pattern} replacement failed!" with open(path, "wt") as fh: fh.write(content)