From 458edb0ddbd1966fd2611d00d6b5ceb088e93376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Szab=C3=B3?= Date: Sat, 23 Dec 2017 14:18:12 +0100 Subject: [PATCH] Clarified variable --- cloak.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloak.py b/cloak.py index 573cadc..155115b 100644 --- a/cloak.py +++ b/cloak.py @@ -33,8 +33,8 @@ s.close() def check_external_dependency(command, help=None): - check_msfvenom = os.system('command -v %s > /dev/null' % command) - if check_msfvenom != 0: + check_command = os.system('command -v %s > /dev/null' % command) + if check_command != 0: print '%s%s Couldn\'t find %s!' % (bad, red, command) if help: print '%s %s' % (info, help)