diff --git a/cgi-bin/webnotes/modules/patch.py b/cgi-bin/webnotes/modules/patch.py
index 0b6810f62b..816d760371 100644
--- a/cgi-bin/webnotes/modules/patch.py
+++ b/cgi-bin/webnotes/modules/patch.py
@@ -34,5 +34,5 @@ def write_log():
from webnotes.utils import sendmail
subj = 'Error in running patches in %s' % webnotes.conn.cur_db_name
msg = subj + '
Login User: ' + webnotes.user.name + '
' + webnotes.getTraceback()
- if getattr(webnotes.defs,'admin_email_notification',1):
+ if getattr(webnotes.defs,'admin_email_notification',0):
sendmail(['developers@erpnext.com'], sender='automail@erpnext.com', subject= subj, parts=[['text/plain', msg]])