Clean up some warnings

bug/bundler_fix
James Lee 2016-01-04 16:02:43 -06:00
parent 05d8f9d186
commit 2dd59a932b
No known key found for this signature in database
GPG Key ID: 2D6094C7CEA0A321
1 changed files with 5 additions and 5 deletions

View File

@ -1169,7 +1169,7 @@ class Core
output += "\n" output += "\n"
end end
print(output +"\n") print(output + "\n")
else else
print_line("Invalid Thread ID") print_line("Invalid Thread ID")
end end
@ -1251,7 +1251,7 @@ class Core
print_status("Successfully loaded plugin: #{inst.name}") print_status("Successfully loaded plugin: #{inst.name}")
end end
rescue ::Exception => e rescue ::Exception => e
elog("Error loading plugin #{path}: #{e}\n\n#{e.backtrace.join("\n")}", src = 'core', level = 0, from = caller) elog("Error loading plugin #{path}: #{e}\n\n#{e.backtrace.join("\n")}", 'core', 0, caller)
print_error("Failed to load plugin from #{path}: #{e}") print_error("Failed to load plugin from #{path}: #{e}")
end end
end end
@ -2222,7 +2222,7 @@ class Core
end end
mod.options.sorted.each { |e| mod.options.sorted.each { |e|
name, opt = e name, _opt = e
res << name res << name
} }
@ -2244,7 +2244,7 @@ class Core
p = framework.payloads.create(mod.datastore['PAYLOAD']) p = framework.payloads.create(mod.datastore['PAYLOAD'])
if (p) if (p)
p.options.sorted.each { |e| p.options.sorted.each { |e|
name, opt = e name, _opt = e
res << name res << name
} }
end end
@ -2454,7 +2454,7 @@ class Core
return tabs return tabs
end end
def cmd_get_help def cmd_get_help
print_line "Usage: get var1 [var2 ...]" print_line "Usage: get var1 [var2 ...]"
print_line print_line
print_line "The get command is used to get the value of one or more variables." print_line "The get command is used to get the value of one or more variables."