Module: check_mk
Branch: master
Commit: 27eaa0bc175e2f43675e5d1b0b17b02a9e7d813b
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=27eaa0bc175e2f…
Author: Roland Halbig <rh(a)mathias-kettner.de>
Date: Wed Feb 22 11:03:15 2017 +0100
Fixed type-O in htmllib.
Change-Id: I5236105545143ecdd64a8bb31f3f0efdc05e82cc
---
web/htdocs/htmllib.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/htmllib.py b/web/htdocs/htmllib.py
index d5374be..82c7417 100644
--- a/web/htdocs/htmllib.py
+++ b/web/htdocs/htmllib.py
@@ -1356,7 +1356,7 @@ class RequestHandler(object):
else:
# crash report please
- raise TypeError(_("Only str and unicode values are allowed, got got
%s") % type(value))
+ raise TypeError(_("Only str and unicode values are allowed, got
%s") % type(value))
def del_var(self, varname):