mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Minor patch for #2852
This commit is contained in:
parent
66c1f72a16
commit
84b7a26bfd
3 changed files with 6 additions and 3 deletions
|
|
@ -95,6 +95,9 @@ def exceptionHandledFunction(threadFunction, silent=False):
|
|||
if not silent:
|
||||
logger.error("thread %s: %s" % (threading.currentThread().getName(), ex.message))
|
||||
|
||||
if conf.verbose > 1:
|
||||
traceback.print_exc()
|
||||
|
||||
def setDaemon(thread):
|
||||
# Reference: http://stackoverflow.com/questions/190010/daemon-threads-explanation
|
||||
if PYVERSION >= "2.6":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue