Removed: # nosec directives until further security review.

This commit is contained in:
coffeedogs 2018-05-08 12:13:49 +01:00
parent fe3a86d361
commit ed4a092c51
No known key found for this signature in database
GPG Key ID: 9D818C503D0B7E70
1 changed files with 2 additions and 2 deletions

View File

@ -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,))