We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c821e commit 2041361Copy full SHA for 2041361
1 file changed
lib/core/common.py
@@ -1610,7 +1610,7 @@ def adjustTimeDelay(lastQueryDuration, lowerStdLimit):
1610
kb.delayCandidates = [candidate] + kb.delayCandidates[:-1]
1611
if all([x == candidate for x in kb.delayCandidates]) and candidate < conf.timeSec:
1612
print
1613
- warnMsg = "adjusting time delay to %d seconds" % candidate
+ warnMsg = "adjusting time delay to %d second%s" % (candidate, 's' if candidate > 1 else '')
1614
logger.warn(warnMsg)
1615
conf.timeSec = candidate
1616
0 commit comments