From a935fb61574150cb7a417cb89078ac0617d910fa Mon Sep 17 00:00:00 2001 From: Etienne Cordonnier Date: Mon, 22 Jun 2026 13:34:28 +0200 Subject: [PATCH] contrib: oe-stylize: fix warning Fix this warning: ``` meta-openembedded/./contrib/oe-stylize.py:3: SyntaxWarning: invalid escape sequence '\ ' """\ ``` Signed-off-by: Etienne Cordonnier Signed-off-by: Khem Raj --- contrib/oe-stylize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/oe-stylize.py b/contrib/oe-stylize.py index 1fb0a5bcc0..e48b4dd5c1 100755 --- a/contrib/oe-stylize.py +++ b/contrib/oe-stylize.py @@ -15,7 +15,7 @@ TODO: - backup the original .bb file - make a diff and ask confirmation for patching ? - do not use startswith only: - /!\ startswith('SOMETHING') is not taken into account due to the previous startswith('S'). + WARNING: startswith('SOMETHING') is not taken into account due to the previous startswith('S'). - count rule breaks and displays them in the order frequence """