From 29fada7d8c08fb04c9aee9408f6acb3cc44fad51 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 18 Sep 2022 23:56:11 -0400 Subject: [PATCH] Don't use removeprefix in tools/unnamed.py (it worked locally...) --- tools/unnamed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unnamed.py b/tools/unnamed.py index 324671f0c..379e0be61 100755 --- a/tools/unnamed.py +++ b/tools/unnamed.py @@ -48,8 +48,8 @@ objects = None if args.rootdir: for line in subprocess.Popen(['make', '-C', args.rootdir, '-s', '-p', 'DEBUG=1'], stdout=subprocess.PIPE).stdout.read().decode().split('\n'): - if line.startswith('pokecrystal_obj'): - objects = line.removeprefix('pokecrystal_obj').lstrip().removeprefix(':=').strip().split() + if line.startswith('pokecrystal_obj :='): + objects = line[len('pokecrystal_obj :='):].strip().split() break else: print('Error: Object files not found!', file=sys.stderr)