← Back to team overview

banking-addons-team team mailing list archive

[Merge] lp:~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration into lp:banking-addons

 

Stefan Rijnhart (Therp) has proposed merging lp:~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration into lp:banking-addons.

Requested reviews:
  Banking Addons Team (banking-addons-team)

For more details, see:
https://code.launchpad.net/~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration/+merge/144680
-- 
https://code.launchpad.net/~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration/+merge/144680
Your team Banking Addons Team is requested to review the proposed merge of lp:~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration into lp:banking-addons.
=== modified file 'account_direct_debit/model/account_move_line.py'
--- account_direct_debit/model/account_move_line.py	2012-01-12 10:58:49 +0000
+++ account_direct_debit/model/account_move_line.py	2013-01-24 11:21:20 +0000
@@ -89,7 +89,7 @@
     def _dummy(self, cr, user, ids, name, arg, context=None):
         res = {}
         if ids:
-            res = dict([(x.id, False) for x in ids])
+            res = dict([(x, False) for x in ids])
         return res
 
     def _invoice_payment_term_id_search(


Follow ups