Module: check_mk
Branch: master
Commit: 592fb9c4ed71665b1a403d56189edb47aeadf8a3
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=592fb9c4ed7166…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Mon May 30 18:39:34 2011 +0200
WATO: fix translation problem
---
web/htdocs/wato.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 96593f9..3f8562d 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -2059,7 +2059,7 @@ def interactive_progress(items, title, stats, finishvars,
timewait):
html.write("</table>")
html.write("</center>")
json_items = '[ %s ]' % ','.join([ "'" + h +
"'" for h in items ])
- html.javascript('progress_scheduler("%s", "%s", 50, %s,
"%s", "' + _("FINISHED.") + '");' %
+ html.javascript(('progress_scheduler("%s", "%s", 50, %s,
"%s", "' + _("FINISHED.") + '");') %
(html.var('mode'), html.makeuri([]), json_items,
html.makeuri(finishvars)))
# +----------------------------------------------------------------------+