From eb925f1c654440e66c5b063805daed6c7eb5a7c4 Mon Sep 17 00:00:00 2001
From: Sinisa Veseli <sveseli@aps.anl.gov>
Date: Tue, 2 Feb 2016 03:40:26 +0000
Subject: [PATCH] fix syntax error

---
 src/python/dm/common/processing/fileProcessingThread.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/python/dm/common/processing/fileProcessingThread.py b/src/python/dm/common/processing/fileProcessingThread.py
index 9db72007..6f579cef 100755
--- a/src/python/dm/common/processing/fileProcessingThread.py
+++ b/src/python/dm/common/processing/fileProcessingThread.py
@@ -53,7 +53,7 @@ class FileProcessingThread(threading.Thread):
                             self.logger.debug('%s processed file at path %s ' % (processorName, filePath))
                         except 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)
                             fileProcessingDict = fileInfo.get('processingDict', {})
                             fileInfo['processingDict'] = fileProcessingDict
-- 
GitLab