From 4c0127fec1138fa386df793b487c1dd499a7a88a Mon Sep 17 00:00:00 2001 From: Philipp Date: Fri, 3 Jun 2022 09:18:05 +0200 Subject: [PATCH] Update update_version.py --- .github/update_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/update_version.py b/.github/update_version.py index 38c46a0..196d167 100644 --- a/.github/update_version.py +++ b/.github/update_version.py @@ -6,7 +6,7 @@ with open(file_i, 'r') as f: content = f.read() - content_new = re.sub(r"(?<=version\=\").*?(?=")", + content_new = re.sub(r"(?<=version\=\").*?(?=\")", str(version), content, flags=re.M)