diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-08-05 02:58:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 02:58:27 +0300 |
commit | 6a9cd405a3608afeddab8f18e8648d4ccde47268 (patch) | |
tree | 56babde64959141e6f1fbdd00ab1a0d00fd5f12d /scripts | |
parent | 2ee039c736f64c91bb4f16e403360cddb0089707 (diff) | |
parent | 24854b4dd74edabf67efe533ef191553442a9bad (diff) |
Merge pull request #2188 from Nicky-D/feature/warning_cleansweep
Feature/warning cleansweep
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/packages-formatter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/packages-formatter.py b/scripts/packages-formatter.py index 4449111e46..5d31702e76 100755 --- a/scripts/packages-formatter.py +++ b/scripts/packages-formatter.py @@ -42,7 +42,7 @@ _autobuild_env=os.environ.copy() # Coerce stdout encoding to utf-8 as cygwin's will be detected as cp1252 otherwise. _autobuild_env["PYTHONIOENCODING"] = "utf-8" -pkg_line=re.compile('^([\w-]+):\s+(.*)$') +pkg_line=re.compile(r'^([\w-]+):\s+(.*)$') def autobuild(*args): """ |