[FIX] qweb: <t t-log> action was generating invalid code

bzr revid: chs@openerp.com-20121121155001-7gwb3w3mxqevxibm
This commit is contained in:
Christophe Simonis 2012-11-21 16:50:01 +01:00
parent b04140e54c
commit 56ee9f011b
1 changed files with 1 additions and 1 deletions

View File

@ -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;