Minor language update

This commit is contained in:
Miroslav Stampar 2012-12-11 15:24:02 +01:00
parent 760519dbe9
commit b5884c7eda

View File

@ -2467,7 +2467,7 @@ def showHttpErrorCodes():
""" """
if kb.httpErrorCodes: if kb.httpErrorCodes:
warnMsg = "HTTP error codes detected during testing:\n" warnMsg = "HTTP error codes detected during run:\n"
warnMsg += ", ".join("%d (%s) - %d times" % (code, httplib.responses[code] \ warnMsg += ", ".join("%d (%s) - %d times" % (code, httplib.responses[code] \
if code in httplib.responses else '?', count) \ if code in httplib.responses else '?', count) \
for code, count in kb.httpErrorCodes.items()) for code, count in kb.httpErrorCodes.items())