Merge lp:~therp-nl/openobject-addons/6.1_ronald@therp.nl_fetchmail_correction_lp1082632 into lp:openobject-addons/6.1

Proposed by Ronald Portier (Therp)
Status: Needs review
Proposed branch: lp:~therp-nl/openobject-addons/6.1_ronald@therp.nl_fetchmail_correction_lp1082632
Merge into: lp:openobject-addons/6.1
Diff against target: 11 lines (+1/-1)
1 file modified
fetchmail/fetchmail.py (+1/-1)
To merge this branch: bzr merge lp:~therp-nl/openobject-addons/6.1_ronald@therp.nl_fetchmail_correction_lp1082632
Reviewer Review Type Date Requested Status
Stefan Rijnhart (Opener) (community) Approve
OpenERP Core Team Pending
Review via email: mp+142858@code.launchpad.net

Description of the change

Fix lp1082632. Error in write method of fetchmail object, that renders this method completely unusable.

To post a comment you must log in.
Revision history for this message
Stefan Rijnhart (Opener) (stefan-opener) wrote :

LGTM

review: Approve

Unmerged revisions

7127. By Ronald Portier (Therp)

[FIX] lp1082632. Wrong variable name in write method of fetchmail object.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'fetchmail/fetchmail.py'
2--- fetchmail/fetchmail.py 2012-07-27 13:50:07 +0000
3+++ fetchmail/fetchmail.py 2013-01-11 09:52:26 +0000
4@@ -255,7 +255,7 @@
5 context={}
6 fetchmail_server_id = context.get('fetchmail_server_id')
7 if fetchmail_server_id:
8- values['fetchmail_server_id'] = server_id
9+ values['fetchmail_server_id'] = fetchmail_server_id
10 res = super(mail_message,self).write(cr, uid, ids, values, context=context)
11 return res
12