This commit is contained in:
Kovid Goyal 2010-11-24 23:04:04 -07:00
parent 9f71cb35ce
commit b853001297

View File

@ -126,7 +126,8 @@ class Emailer(Thread): # {{{
try: try:
job.email_sent_callback(job) job.email_sent_callback(job)
except: except:
pass import traceback
traceback.print_exc()
def send_mails(self, jobnames, callback, attachments, to_s, subjects, def send_mails(self, jobnames, callback, attachments, to_s, subjects,
texts, attachment_names): texts, attachment_names):