From 19941e39997bbaffbe06dd2f5e83db5fb47ed1bb Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 13 Jan 2017 19:07:08 +0530 Subject: [PATCH] [minor] remove debug --- frappe/email/doctype/contact/contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/email/doctype/contact/contact.py b/frappe/email/doctype/contact/contact.py index ac878c74cd..59c0fd66c4 100644 --- a/frappe/email/doctype/contact/contact.py +++ b/frappe/email/doctype/contact/contact.py @@ -50,7 +50,7 @@ def get_default_contact(doctype, name): dl.parenttype = "Contact" order by contact.is_primary_contact desc, name - limit 1''', (doctype, name), debug=1) + limit 1''', (doctype, name)) print out return out and out[0][0] or None