From 8506523a11f63eea6ecf93f446c5577731554bd8 Mon Sep 17 00:00:00 2001 From: Paul Butler Date: Sat, 7 Dec 2019 15:17:45 +0000 Subject: [PATCH] typo: replaced 'in' with 'is' ESK processing Signed-off-by: Paul Butler --- attila/atre.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attila/atre.py b/attila/atre.py index ca20ad8..62f8949 100644 --- a/attila/atre.py +++ b/attila/atre.py @@ -368,7 +368,7 @@ def __process_ESK(self, esk): #Replace session values to_out = self.__session.replace_session_keys(esk.value) print(to_out) - elif esk.keyword in ESK.EXEC: + elif esk.keyword is ESK.EXEC: rc = system(esk.value) if rc != 0: return False