bug/bundler_fix
Stuart Morgan 2015-05-11 18:50:03 +01:00
parent 8308c2a925
commit b8f7c80fd2
1 changed files with 3 additions and 4 deletions

View File

@ -31,11 +31,10 @@ class Metasploit3 < Msf::Auxiliary
end
def run
if datastore['STORE_NOTES']==false && datastore['SHOW_ERRORS']==false && datastore['SHOW_TITLES']==false
print_error("Notes storage is false, errors have been turned off and titles are not being shown on the console. There isn't much point in running this module.")
if datastore['STORE_NOTES'] == false && datastore['SHOW_ERRORS'] == false && datastore['SHOW_TITLES'] == false
print_error("Notes storage is false, errors have been turned off and titles are not being shown on the console. There isn't much point in running this module.")
else
super
super
end
end