Module: check_mk
Branch: master
Commit: 710dfe9e3a6a9d65a9fd6d3566dd9d00173631e4
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=710dfe9e3a6a9d…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Tue Dec 1 10:05:37 2015 +0100
Fixed broken rule based notification page
---
web/htdocs/wato.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 79062d6..38b50d8 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -9294,7 +9294,7 @@ def simple_host_rule_match_conditions():
def generic_rule_match_conditions():
- simple_host_rule_match_conditions() + [
+ return simple_host_rule_match_conditions() + [
( "match_servicegroups",
GroupChoice("service",
title = _("Match Service Groups"),
@@ -20697,3 +20697,4 @@ def register_builtin_host_tags():
('ip-v4', u'IPv4'),
('ip-v6', u'IPv6')
]
+