From 56ee9f011bb4fb4faa3fa5e17ceab258ac27d483 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 21 Nov 2012 16:50:01 +0100 Subject: [PATCH] [FIX] qweb: action was generating invalid code bzr revid: chs@openerp.com-20121121155001-7gwb3w3mxqevxibm --- addons/web/static/lib/qweb/qweb2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/lib/qweb/qweb2.js b/addons/web/static/lib/qweb/qweb2.js index 71a9628eff2..5c076112eb0 100644 --- a/addons/web/static/lib/qweb/qweb2.js +++ b/addons/web/static/lib/qweb/qweb2.js @@ -698,7 +698,7 @@ QWeb2.Element = (function() { this.top("debugger;"); }, compile_action_log : function(value) { - this.top("console.log(" + this.format_expression(value) + "});"); + this.top("console.log(" + this.format_expression(value) + ");"); } }); return Element;