diff --git a/email_handler.py b/email_handler.py index 1ab113bb..aa8d4f27 100644 --- a/email_handler.py +++ b/email_handler.py @@ -662,11 +662,7 @@ def forward_email_to_mailbox( ) # create PGP email if needed - if ( - mailbox.pgp_enabled() - and user.is_premium() - and not alias.disable_pgp - ): + if mailbox.pgp_enabled() and user.is_premium() and not alias.disable_pgp: LOG.d("Encrypt message using mailbox %s", mailbox) if mailbox.generic_subject: LOG.d("Use a generic subject for %s", mailbox)