Skip to content

Commit 2041361

Browse files
committed
minor cosmetics
1 parent e2c821e commit 2041361

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ def adjustTimeDelay(lastQueryDuration, lowerStdLimit):
16101610
kb.delayCandidates = [candidate] + kb.delayCandidates[:-1]
16111611
if all([x == candidate for x in kb.delayCandidates]) and candidate < conf.timeSec:
16121612
print
1613-
warnMsg = "adjusting time delay to %d seconds" % candidate
1613+
warnMsg = "adjusting time delay to %d second%s" % (candidate, 's' if candidate > 1 else '')
16141614
logger.warn(warnMsg)
16151615
conf.timeSec = candidate
16161616

0 commit comments

Comments
 (0)