Fix remaining typos

GSoC/Meterpreter_Web_Console
William Vu 2018-09-20 14:53:31 -05:00
parent 175dec7ade
commit 6f72a0516f
1 changed files with 4 additions and 4 deletions

View File

@ -455,10 +455,10 @@ module DispatcherShell
end
rescue ::Interrupt
print_error("#{method}: Interrupted")
raise if propogate_errors
raise if propagate_errors
rescue OptionParser::ParseError => e
print_error("#{method}: #{e.message}")
raise if propogate_errors
raise if propagate_errors
rescue
error = $!
@ -466,14 +466,14 @@ module DispatcherShell
"Error while running command #{method}: #{$!}" +
"\n\nCall stack:\n#{$@.join("\n")}")
raise if propogate_errors
raise if propagate_errors
rescue ::Exception => e
error = $!
print_error(
"Error while running command #{method}: #{$!}")
raise if propogate_errors
raise if propagate_errors
end
# If the dispatcher stack changed as a result of this command,