Commit 110ed5ca authored by Łukasz Nowak's avatar Łukasz Nowak

Missing coma.

TypeError: unsupported operand type(s) for ** or pow(): 'int' and 'dict'

There was a try to do True^kw
parent ebc527d8
...@@ -75,7 +75,7 @@ if invoice_line is None:\n ...@@ -75,7 +75,7 @@ if invoice_line is None:\n
destination_section=person.getRelativeUrl(),\n destination_section=person.getRelativeUrl(),\n
destination=person.getRelativeUrl(),\n destination=person.getRelativeUrl(),\n
specialise=\'sale_trade_condition_module/vifib_trade_condition\',\n specialise=\'sale_trade_condition_module/vifib_trade_condition\',\n
created_by_builder=1 # XXX to prevent init script to create lines\n created_by_builder=1, # XXX to prevent init script to create lines\n
**kw\n **kw\n
)\n )\n
invoice.newContent(\n invoice.newContent(\n
......
552 553
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment