Related to the #3588

This commit is contained in:
Miroslav Stampar
2019-04-17 17:20:04 +02:00
parent bdf6452af6
commit 1eeb6c1f5b
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ def exceptionHandledFunction(threadFunction, silent=False):
errMsg = ex.message if isinstance(ex, SqlmapBaseException) else "%s: %s" % (type(ex).__name__, ex.message)
logger.error("thread %s: '%s'" % (threading.currentThread().getName(), errMsg))
if conf.get("verbose") > 1:
if conf.get("verbose") > 1 and not isinstance(ex, (SqlmapUserQuitException,)):
traceback.print_exc()
def setDaemon(thread):