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

Proposed by Stefan Rijnhart (Opener)
Status: Merged
Merged at revision: 156
Proposed branch: lp:~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration
Merge into: lp:banking-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
account_direct_debit/model/account_move_line.py (+1/-1)
To merge this branch: bzr merge lp:~therp-nl/banking-addons/ba61-fix_syntax_error_in_iteration
Reviewer Review Type Date Requested Status
Guewen Baconnier @ Camptocamp no test, code review Approve
Alexandre Fayolle - camptocamp code review, no test Approve
Review via email: mp+144680@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Alexandre Fayolle - camptocamp (alexandre-fayolle-c2c) wrote :

LGTM

review: Approve (code review, no test)
Revision history for this message
Guewen Baconnier @ Camptocamp (gbaconnier-c2c) wrote :

LGTM

review: Approve (no test, code review)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_direct_debit/model/account_move_line.py'
2--- account_direct_debit/model/account_move_line.py 2012-01-12 10:58:49 +0000
3+++ account_direct_debit/model/account_move_line.py 2013-01-24 11:21:20 +0000
4@@ -89,7 +89,7 @@
5 def _dummy(self, cr, user, ids, name, arg, context=None):
6 res = {}
7 if ids:
8- res = dict([(x.id, False) for x in ids])
9+ res = dict([(x, False) for x in ids])
10 return res
11
12 def _invoice_payment_term_id_search(

Subscribers

People subscribed via source and target branches