From 80bf1fe3c213587bf41fe2f526db8bda33b9a024 Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Sun, 3 Dec 2017 22:19:36 -0800 Subject: [PATCH] Bugfix: system_checklist.py activation section --- .bin/Scripts/system_checklist.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bin/Scripts/system_checklist.py b/.bin/Scripts/system_checklist.py index 889694c7..9f9686b7 100644 --- a/.bin/Scripts/system_checklist.py +++ b/.bin/Scripts/system_checklist.py @@ -6,6 +6,7 @@ import sys # Init os.chdir(os.path.dirname(os.path.realpath(__file__))) sys.path.append(os.getcwd()) +from functions.activation import * from functions.cleanup import * from functions.diags import * from functions.info import * @@ -71,7 +72,7 @@ if __name__ == '__main__': if (not windows_is_activated() and global_vars['OS']['Version'] in ('8', '10')): try_and_print(message='BIOS Activation:', - function=activate_windows_with_bios, + function=activate_with_bios, other_results=other_results) try_and_print(message='Installed Office:', function=get_installed_office, ns='Unknown', print_return=True)