diff options
Diffstat (limited to 'sploit/util.py')
-rw-r--r-- | sploit/util.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sploit/util.py b/sploit/util.py index b0572a0..610ab31 100644 --- a/sploit/util.py +++ b/sploit/util.py @@ -7,10 +7,8 @@ __RUN_CACHE__ = {} def run_cmd_cached(cmd): key = ''.join(cmd) if key in __RUN_CACHE__: - print('cache hit') return __RUN_CACHE__[key] else: - print('cache miss') result = run_cmd(cmd) __RUN_CACHE__[key] = result return result |