Minor language fix

This commit is contained in:
Miroslav Stampar
2013-07-31 09:24:34 +02:00
parent 941b2387c0
commit eaacbe0b12
6 changed files with 8 additions and 8 deletions

View File

@@ -140,7 +140,7 @@ def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardExceptio
try:
thread.start()
except threadError, errMsg:
errMsg = "error occured while starting new thread ('%s')" % errMsg
errMsg = "error occurred while starting new thread ('%s')" % errMsg
logger.critical(errMsg)
break