[REM] Removed a print statement.

bzr revid: tde@openerp.com-20120719155641-a2ant2472swb3fhp
This commit is contained in:
Thibault Delavallée 2012-07-19 17:56:41 +02:00
parent 81e6449e57
commit fab43d4140
1 changed files with 0 additions and 1 deletions

View File

@ -322,7 +322,6 @@ class res_partner(osv.osv):
contact_regex_res = contact_regex.findall(name)
email_regex_res = email_regex.findall(name)
if contact_regex_res:
print contact_regex_res
name = contact_regex_res[0][0].rstrip(' ') # remove extra spaces on the right
email = contact_regex_res[0][1]
rec_id = self.create(cr, uid, {self._rec_name: name, 'email': email}, context);