Module: check_mk
Branch: master
Commit: 1049cfa2021956d2f491013420a4ea2c68dc0589
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=1049cfa2021956…
Author: Götz Golla <gg(a)mathias-kettner.de>
Date: Sat Oct 26 22:12:23 2013 +0200
FIX: Typo in check hwg_temp
---
checks/hwg_temp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/checks/hwg_temp b/checks/hwg_temp
index f6222bc..6929191 100644
--- a/checks/hwg_temp
+++ b/checks/hwg_temp
@@ -58,7 +58,7 @@ def check_hwg_temp(item, params, info):
state = 2
elif current_state >= warn:
state = 1
- eelif status in ('4', '2'):
+ elif status in ('4', '2'):
state = 1
elif status in('0', '3', '5'):
state = 2