From 65284860fba88ab0ba98e76db5170aa465bc9a6c Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 13 Jan 2020 18:40:48 -0700 Subject: [PATCH] Adjusted HW Diag main menu --- scripts/wk/hw/diags.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/wk/hw/diags.py b/scripts/wk/hw/diags.py index 7997f00f..5143afce 100644 --- a/scripts/wk/hw/diags.py +++ b/scripts/wk/hw/diags.py @@ -74,7 +74,7 @@ MENU_SETS = { } MENU_TOGGLES = ( 'osTicket Integration', - 'osTicket Note (optional)', + 'osTicket Tech Note', 'Skip USB Benchmarks', ) NUM_DISK_TESTS = len([s for s in MENU_OPTIONS if s.startswith('Disk')]) @@ -431,7 +431,7 @@ def build_menu(cli_mode=False, quick_mode=False): menu.actions['Start']['Separator'] = True # osTicket - menu.toggles['osTicket Note (optional)']['Selected'] = False + menu.toggles['osTicket Tech Note']['Selected'] = False # Update default selections for quick mode if necessary if quick_mode: @@ -1418,7 +1418,7 @@ def run_diags(state, menu, quick_mode=False): # Add note if (state.ost.ticket_id - and menu.toggles['osTicket Note (optional)']['Selected']): + and menu.toggles['osTicket Tech Note']['Selected']): state.ost.add_note() # Just return if no tests were selected