From 07a69d5e26514ce06cc9f1ead049e72970e4d0c4 Mon Sep 17 00:00:00 2001 From: f-kessler Date: Thu, 14 Mar 2019 12:04:35 +0100 Subject: [PATCH] comment updated --- includes/alarmHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/alarmHandler.py b/includes/alarmHandler.py index 3cff661..98998e0 100644 --- a/includes/alarmHandler.py +++ b/includes/alarmHandler.py @@ -73,7 +73,7 @@ def processAlarm(typ, freq, data): logging.debug("[ ALARM ]") # timestamp, to make sure, that all plugins use the same time data['timestamp'] = int(time.time()) - #copy objects to avoid issues if the objects will be changed by the plugin's during runtime or during asynch/threaded processing + # copy objects to avoid issues if the objects will be changed by the plugin's during runtime and during asynch/threaded processing dctyp = deepcopy(typ) dcfreq = deepcopy(freq) dcdata = deepcopy(data)