Updated system_checklist_hw.py
This commit is contained in:
parent
2218c03172
commit
6d7a5e1eae
1 changed files with 3 additions and 4 deletions
|
|
@ -4,14 +4,13 @@ import os
|
|||
import sys
|
||||
|
||||
# Init
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
sys.path.append(os.getcwd())
|
||||
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
||||
from functions.activation import *
|
||||
from functions.cleanup import *
|
||||
from functions.diags import *
|
||||
from functions.info import *
|
||||
from functions.product_keys import *
|
||||
from functions.setup import *
|
||||
from functions.sw_diags import *
|
||||
init_global_vars()
|
||||
os.system('title {}: System HW Checklist Tool'.format(KIT_NAME_FULL))
|
||||
set_log_file('System HW Checklist.log')
|
||||
|
|
@ -107,7 +106,7 @@ if __name__ == '__main__':
|
|||
function=run_xmplay, cs='Started', other_results=other_results)
|
||||
try:
|
||||
check_secure_boot_status(show_alert=True)
|
||||
except:
|
||||
except Exception:
|
||||
# Only trying to open alert message boxes
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue