We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a1bbb commit c721594Copy full SHA for c721594
src/worker/email.py
@@ -81,12 +81,7 @@ async def run(self):
81
attachments = [a async for a in self._generate_base64_pdf(self.recipient.pdf_attachments)]
82
attachments += [a async for a in self._generate_base64(self.recipient.attachments)]
83
if self.ctx['job_try'] >= 2:
84
- main_logger.info(
85
- '%s: finished generating all attachments',
86
- self.group_id,
87
- len(self.recipient.pdf_attachments),
88
- len(self.recipient.attachments),
89
- )
+ main_logger.info('%s: finished generating all attachments', self.group_id)
90
91
if self.m.method == EmailSendMethod.email_mandrill:
92
if self.recipient.address.endswith('@example.com'):
0 commit comments