Thibault Delavallée (OpenERP) has proposed merging lp:~openerp-dev/openobject-addons/trunk-fix-fetchmail-crm-tde into lp:openobject-addons.
Requested reviews: OpenERP Core Team (openerp) For more details, see: https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-fix-fetchmail-crm-tde/+merge/134907 -- https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-fix-fetchmail-crm-tde/+merge/134907 Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-fix-fetchmail-crm-tde.
=== modified file 'crm/crm_lead.py' --- crm/crm_lead.py 2012-11-19 12:56:13 +0000 +++ crm/crm_lead.py 2012-11-19 13:36:40 +0000 @@ -832,7 +832,7 @@ } for line in msg.get('body', '').split('\n'): line = line.strip() - res = tools.misc.command_re.match(line) + res = tools.command_re.match(line) if res and maps.get(res.group(1).lower()): key = maps.get(res.group(1).lower()) update_vals[key] = res.group(2).lower() === modified file 'crm_claim/crm_claim.py' --- crm_claim/crm_claim.py 2012-11-15 12:38:51 +0000 +++ crm_claim/crm_claim.py 2012-11-19 13:36:40 +0000 @@ -224,7 +224,7 @@ } for line in msg['body'].split('\n'): line = line.strip() - res = tools.misc.command_re.match(line) + res = tools.command_re.match(line) if res and maps.get(res.group(1).lower()): key = maps.get(res.group(1).lower()) update_vals[key] = res.group(2).lower() === modified file 'crm_helpdesk/crm_helpdesk.py' --- crm_helpdesk/crm_helpdesk.py 2012-11-01 05:19:57 +0000 +++ crm_helpdesk/crm_helpdesk.py 2012-11-19 13:36:40 +0000 @@ -133,7 +133,7 @@ } for line in msg['body'].split('\n'): line = line.strip() - res = tools.misc.command_re.match(line) + res = tools.command_re.match(line) if res and maps.get(res.group(1).lower()): key = maps.get(res.group(1).lower()) update_vals[key] = res.group(2).lower() === modified file 'hr_recruitment/hr_recruitment.py' --- hr_recruitment/hr_recruitment.py 2012-11-05 10:15:38 +0000 +++ hr_recruitment/hr_recruitment.py 2012-11-19 13:36:40 +0000 @@ -373,7 +373,7 @@ } for line in msg.get('body', '').split('\n'): line = line.strip() - res = tools.misc.command_re.match(line) + res = tools.command_re.match(line) if res and maps.get(res.group(1).lower(), False): key = maps.get(res.group(1).lower()) update_vals[key] = res.group(2).lower() === modified file 'project/project.py' --- project/project.py 2012-11-15 12:38:51 +0000 +++ project/project.py 2012-11-19 13:36:40 +0000 @@ -1247,7 +1247,7 @@ } for line in msg['body'].split('\n'): line = line.strip() - res = tools.misc.command_re.match(line) + res = tools.command_re.match(line) if res: match = res.group(1).lower() field = maps.get(match)
_______________________________________________ Mailing list: https://launchpad.net/~openerp-dev-gtk Post to : openerp-dev-gtk@lists.launchpad.net Unsubscribe : https://launchpad.net/~openerp-dev-gtk More help : https://help.launchpad.net/ListHelp