bug fix (reported by ToR)

This commit is contained in:
Miroslav Stampar
2010-11-10 19:44:51 +00:00
parent f3fe19c4e5
commit 96d88877ba
3 changed files with 13 additions and 10 deletions

View File

@@ -308,9 +308,6 @@ def start():
checkForParenthesis()
action()
except sqlmapSilentQuitException:
raise
except KeyboardInterrupt:
if conf.multipleTargets:
warnMsg = "Ctrl+C detected in multiple target mode"
@@ -331,6 +328,9 @@ def start():
except sqlmapUserQuitException:
raise
except sqlmapSilentQuitException:
raise
except exceptionsTuple, e:
e = getUnicode(e)