Skip to content
Snippets Groups Projects
Commit eb925f1c authored by sveseli's avatar sveseli
Browse files

fix syntax error

parent 27d453f6
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ class FileProcessingThread(threading.Thread): ...@@ -53,7 +53,7 @@ class FileProcessingThread(threading.Thread):
self.logger.debug('%s processed file at path %s ' % (processorName, filePath)) self.logger.debug('%s processed file at path %s ' % (processorName, filePath))
except Exception, ex: except Exception, ex:
self.logger.exception(ex) self.logger.exception(ex)
errorMsg = '%s processing failed for file %s: %s' % (processorName, filePath, str(ex))) errorMsg = '%s processing error: %s' % (processorName, str(ex))
self.logger.debug(errorMsg) self.logger.debug(errorMsg)
fileProcessingDict = fileInfo.get('processingDict', {}) fileProcessingDict = fileInfo.get('processingDict', {})
fileInfo['processingDict'] = fileProcessingDict fileInfo['processingDict'] = fileProcessingDict
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment