This commit is contained in:
DanMcInerney 2014-01-13 04:15:54 -05:00
parent 1bd72b248f
commit b82332a6df

View file

@ -31,7 +31,6 @@ def module_check(module):
'''
Just for debian-based systems like Kali
'''
print module
ri = raw_input('[-] python-%s not installed, would you like to install now? (apt-get install -y python-%s will be run if yes) [y/n]: ' % (module, module))
if ri == 'y':
os.system('apt-get install -y python-%s' % module)