Module: check_mk
Branch: master
Commit: 0d20d5284f6fa615e3311e6fae74648026cff54f
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0d20d5284f6fa6…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Jun 26 14:01:36 2014 +0200
Fixed debug log message
---
modules/notify.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/notify.py b/modules/notify.py
index d29808a..b39c8da 100644
--- a/modules/notify.py
+++ b/modules/notify.py
@@ -1232,7 +1232,7 @@ def call_notification_script(plugin, plugin_context):
# Existing vars are replaced, some already existing might remain
for key in plugin_context:
if type(plugin_context[key]) == bool:
- notify_log("MIST: %s=%s ist bool" % (key, plugin_context[key]))
+ notify_log("INTERNAL ERROR: %s=%s is of type bool" % (key,
plugin_context[key]))
os.putenv('NOTIFY_' + key, plugin_context[key].encode('utf-8'))
notify_log(" executing %s" % path)