mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 00:42:23 +01:00
write console output to temporary folder in any case the test case fails, even if no traceback is raised
This commit is contained in:
parent
4eaa0d17aa
commit
ec076f5f8a
1 changed files with 3 additions and 2 deletions
|
|
@ -292,8 +292,9 @@ def runCase(switches=None, parse=None):
|
|||
if failedItem is not None:
|
||||
failedParseOn = console
|
||||
|
||||
elif retVal is False and tback is not None:
|
||||
elif retVal is False:
|
||||
failedParseOn = console
|
||||
if tback:
|
||||
failedTraceBack = tback
|
||||
|
||||
return retVal
|
||||
|
|
|
|||
Loading…
Reference in a new issue