From b9b7b0456a71f8e4df08592ae0e968407b25cf3f Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Thu, 30 Aug 2018 10:58:31 -0700 Subject: [PATCH] Fix error detection in SW Diags (again) --- .bin/Scripts/system_diagnostics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bin/Scripts/system_diagnostics.py b/.bin/Scripts/system_diagnostics.py index c13147d4..1ee42ffa 100644 --- a/.bin/Scripts/system_diagnostics.py +++ b/.bin/Scripts/system_diagnostics.py @@ -196,7 +196,7 @@ if __name__ == '__main__': print_error(' Unknown error.') # Done - if not D7_MODE or ERRORS > 0: + if not D7_MODE or not system_ok: print_standard('\nDone.') pause('Press Enter to exit...') exit_script()