Skip to content

Commit

Permalink
typo: replaced 'in' with 'is' ESK processing
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Butler <butler.paul@gmail.com>
  • Loading branch information
butlerpaul committed Dec 7, 2019
1 parent 6ac2862 commit 8506523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion attila/atre.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8506523

Please sign in to comment.