From ed4a092c51fd4ae93d93336bb3df418a1208001a Mon Sep 17 00:00:00 2001 From: coffeedogs Date: Tue, 8 May 2018 12:13:49 +0100 Subject: [PATCH] Removed: # nosec directives until further security review. --- src/class_objectProcessor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/class_objectProcessor.py b/src/class_objectProcessor.py index dd88183b..f5d47b2b 100644 --- a/src/class_objectProcessor.py +++ b/src/class_objectProcessor.py @@ -527,7 +527,7 @@ class objectProcessor(threading.Thread): except: apiNotifyPath = '' if apiNotifyPath != '': - call([apiNotifyPath, "newMessage"]) # nosec + call([apiNotifyPath, "newMessage"]) # Let us now check and see whether our receiving address is # behaving as a mailing list @@ -776,7 +776,7 @@ class objectProcessor(threading.Thread): except: apiNotifyPath = '' if apiNotifyPath != '': - call([apiNotifyPath, "newBroadcast"]) # nosec + call([apiNotifyPath, "newBroadcast"]) # Display timing data logger.info('Time spent processing this interesting broadcast: %s' % (time.time() - messageProcessingStartTime,))