From f3f6c2bb295c434acdac7b887d95eb7f3c29602f Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Tue, 6 Feb 2018 16:26:23 -0500 Subject: [PATCH] fix syntax --- mtsenliven.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtsenliven.py b/mtsenliven.py index 9b4af26..5a30171 100644 --- a/mtsenliven.py +++ b/mtsenliven.py @@ -59,7 +59,7 @@ while True: break if found_flag: sub_msg = output[f_i+len(flag):].strip() - if sub_msg in msg_lists[found_flag] + if sub_msg in msg_lists[found_flag]: show_enable = False else: msg_lists[found_flag].append(sub_msg)