diff options
author | Adrian Freihofer <adrian.freihofer@gmail.com> | 2024-02-10 14:15:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-02-13 13:51:41 +0000 |
commit | 605ef6f5a292fe169b1469b0a8996f3d5ae53daf (patch) | |
tree | 68ea616c466ade988cc324256d012e1ec6501942 /scripts/patchtest-get-branch | |
parent | 97eebe59d7ba9d7eb647a2f2a0353fc2424e9827 (diff) | |
download | poky-605ef6f5a292fe169b1469b0a8996f3d5ae53daf.tar.gz |
scripts: python 3.12 regex
All the regexes throw a warning like this:
WARNING: scripts/lib/recipetool/create_buildsys.py:140:
SyntaxWarning: invalid escape sequence '\s'
proj_re = re.compile('project\s*\(([^)]*)\)', re.IGNORECASE)
Python 3 interprets string literals as Unicode strings, and therefore
\s is treated as an escaped Unicode character which is not correct.
Declaring the RegEx pattern as a raw string instead of unicode is
required for Python 3.
(From OE-Core rev: 24b0ba00d4f0b4d9834f7693ecb6032dfc534a80)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/patchtest-get-branch')
-rwxr-xr-x | scripts/patchtest-get-branch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/patchtest-get-branch b/scripts/patchtest-get-branch index b5fb2b0f04..c6e242f8b6 100755 --- a/scripts/patchtest-get-branch +++ b/scripts/patchtest-get-branch | |||
@@ -16,7 +16,7 @@ import argparse | |||
16 | import re | 16 | import re |
17 | import git | 17 | import git |
18 | 18 | ||
19 | re_prefix = re.compile("(\[.*\])", re.DOTALL) | 19 | re_prefix = re.compile(r"(\[.*\])", re.DOTALL) |
20 | 20 | ||
21 | def get_branch(filepath_repo, filepath_mbox, default_branch): | 21 | def get_branch(filepath_repo, filepath_mbox, default_branch): |
22 | branch = None | 22 | branch = None |