Fix in exception of emailing

This commit is contained in:
OzzieIsaacs 2018-08-13 17:40:11 +02:00
parent 5ef70890d9
commit fac0921acf

View File

@ -464,7 +464,7 @@ class WorkerThread(threading.Thread):
sys.stderr = org_stderr
except (socket.error, smtplib.SMTPRecipientsRefused, smtplib.SMTPException):
except (socket.error, smtplib.SMTPRecipientsRefused, smtplib.SMTPException) as e:
self.queue[self.current]['status'] = STAT_FAIL
self.UIqueue[self.current]['status'] = _('Failed')
self.UIqueue[self.current]['progress'] = "100 %"