From 8e6f19ffb0ddee4f5e5d34d9f9f81c4d5d2d33c8 Mon Sep 17 00:00:00 2001 From: flameshikari Date: Thu, 31 Aug 2023 21:42:26 +0500 Subject: [PATCH] fix wrapper --- resources/utilities/add_icons_wrapper.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/utilities/add_icons_wrapper.py b/resources/utilities/add_icons_wrapper.py index 196a37438..681abbd24 100644 --- a/resources/utilities/add_icons_wrapper.py +++ b/resources/utilities/add_icons_wrapper.py @@ -61,10 +61,11 @@ drawable = icon[0] compinfos = ' '.join(icon[1]) command = f'python {target_script} -P {delta_dir} -raidI -n {drawable}' - if compinfos: command += f' -c {compinfos}' - else: + if compinfos: + command += f' -c {compinfos}' if drawable.startswith('google_'): command += f' -C Google' - else: command += f' -C Alts' + else: + command += f' -C Alts' print(f'> {drawable}') execute(command) if not icons[-1][0] == drawable: print()