mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-15 12:52:35 +01:00
minor cosmetics
This commit is contained in:
parent
e2c821eb81
commit
2041361695
1 changed files with 1 additions and 1 deletions
|
|
@ -1610,7 +1610,7 @@ def adjustTimeDelay(lastQueryDuration, lowerStdLimit):
|
|||
kb.delayCandidates = [candidate] + kb.delayCandidates[:-1]
|
||||
if all([x == candidate for x in kb.delayCandidates]) and candidate < conf.timeSec:
|
||||
print
|
||||
warnMsg = "adjusting time delay to %d seconds" % candidate
|
||||
warnMsg = "adjusting time delay to %d second%s" % (candidate, 's' if candidate > 1 else '')
|
||||
logger.warn(warnMsg)
|
||||
conf.timeSec = candidate
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue