From f502a9a10825515db66aa4b502a1411c32abc637 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 20 Mar 2025 16:54:23 +0000 Subject: [PATCH] bitbake: Revert "bblayers/query: Fix using "removeprefix" string method" This reverts commit 004cfdec1c865f2351bbac99acb3d63bfef9d380. Now we have python 3.9 as a minimum we can do this. Signed-off-by: Richard Purdie --- bitbake/lib/bblayers/query.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bitbake/lib/bblayers/query.py b/bitbake/lib/bblayers/query.py index 9b2e081cfd4..eb7cb465b4e 100644 --- a/bitbake/lib/bblayers/query.py +++ b/bitbake/lib/bblayers/query.py @@ -145,8 +145,7 @@ skipped recipes will also be listed, with a " (skipped)" suffix. skiplist = list(self.tinfoil.cooker.skiplist_by_mc[mc].keys()) if mc: - mcspec = f'mc:{mc}:' - skiplist = [s[len(mcspec):] if s.startswith(mcspec) else s for s in skiplist] + skiplist = [s.removeprefix(f'mc:{mc}:') for s in skiplist] for fn in skiplist: recipe_parts = os.path.splitext(os.path.basename(fn))[0].split('_')