Fixes smart_migrate for a TypeError bug

Bug is: TypeError can't convert Rex::RuntimeError into String

[SeeRM: #7984]
unstable
sinn3r 2013-05-28 18:45:49 -05:00
parent 63694a6c87
commit ed5b8895bb
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class Metasploit3 < Msf::Post
return true
rescue ::Exception => e
print_error("Could not migrate in to process.")
print_error(e)
print_error(e.to_s)
return false
end
end