Skip to content

Commit

Permalink
Merge pull request #1 from butlerpaul/master
Browse files Browse the repository at this point in the history
typo: replaced 'in' with 'is' ESK processing
  • Loading branch information
veeso committed Dec 7, 2019
2 parents 6ac2862 + 8506523 commit 8e4cab4
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 8e4cab4

Please sign in to comment.