Module: check_mk
Branch: master
Commit: 0bd4e97d28b0534799c9d1fe337752acf0fcd170
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0bd4e97d28b053…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Wed Jan 27 11:00:19 2016 +0100
Fixed wrong encoded error message in EC
---
mkeventd/web/plugins/views/mkeventd.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mkeventd/web/plugins/views/mkeventd.py
b/mkeventd/web/plugins/views/mkeventd.py
index a91b82d..5f6f488 100644
--- a/mkeventd/web/plugins/views/mkeventd.py
+++ b/mkeventd/web/plugins/views/mkeventd.py
@@ -691,7 +691,7 @@ if mkeventd_enabled:
for action_id, title in mkeventd.action_choices(omit_hidden = True):
if html.var("_action_" + action_id):
return "ACTION;%s;%s;%s" % (row["event_id"],
config.user_id, action_id), \
- (_("execute that action "%s"") % title)
+ (_("execute that action \"%s\"") % title)
multisite_commands.append({
"tables" : [ "event" ],