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

@ -17,7 +17,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
from lib.core.enums import OS
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.3.4.15"
VERSION = "1.3.4.16"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

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):