diff mbox series

[meta-oe] contrib: oe-stylize: fix warning

Message ID 20260622113428.711882-1-ecordonnier@snap.com
State Under Review
Headers show
Series [meta-oe] contrib: oe-stylize: fix warning | expand

Commit Message

Etienne Cordonnier June 22, 2026, 11:34 a.m. UTC
From: Etienne Cordonnier <ecordonnier@snap.com>

Fix this warning:
```
meta-openembedded/./contrib/oe-stylize.py:3: SyntaxWarning: invalid escape sequence '\ '
"""\
```

Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
---
 contrib/oe-stylize.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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
 """