diff --git a/.bin/Scripts/functions/browsers.py b/.bin/Scripts/functions/browsers.py index c6834386..a17422ef 100644 --- a/.bin/Scripts/functions/browsers.py +++ b/.bin/Scripts/functions/browsers.py @@ -129,7 +129,7 @@ def archive_all_users(): # Backup browsers for all valid users print_info('Backing up browsers') for fake_env in sorted(user_envs, key=itemgetter('USERPROFILE')): - print_standard(fake_env['USERNAME']) + print_standard(' {}'.format(fake_env['USERNAME'])) for b_k, b_v in sorted(SUPPORTED_BROWSERS.items()): if b_k == 'Mozilla Firefox Dev': continue @@ -145,7 +145,7 @@ def archive_all_users(): global_vars['Tools']['SevenZip'], 'a', '-aoa', '-bso0', '-bse0', '-mx=1', archive_path, source_items] - try_and_print(message=' {}...'.format(b_k), + try_and_print(message='{}...'.format(b_k), function=run_program, cmd=cmd) print_standard(' ') diff --git a/.bin/Scripts/system_diagnostics.py b/.bin/Scripts/system_diagnostics.py index 1ee42ffa..85edab97 100644 --- a/.bin/Scripts/system_diagnostics.py +++ b/.bin/Scripts/system_diagnostics.py @@ -145,7 +145,7 @@ if __name__ == '__main__': # Run BleachBit cleaners print_info('BleachBit Cleanup') for k, v in sorted(BLEACH_BIT_CLEANERS.items()): - try_and_print(message=' {}...'.format(k), + try_and_print(message='{}...'.format(k), function=run_bleachbit, cs='Done', other_results=other_results, cleaners=v, preview=bool(not D7_MODE))