diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman_pgp/model/address.py | 2 | ||||
| -rw-r--r-- | src/mailman_pgp/pgp/mime.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman_pgp/model/address.py b/src/mailman_pgp/model/address.py index 88067df..3ef95b4 100644 --- a/src/mailman_pgp/model/address.py +++ b/src/mailman_pgp/model/address.py @@ -17,7 +17,7 @@ """""" -from os.path import join, exists, isfile +from os.path import exists, isfile, join from mailman.database.types import SAUnicode from pgpy import PGPKey diff --git a/src/mailman_pgp/pgp/mime.py b/src/mailman_pgp/pgp/mime.py index 8b87abe..67a10aa 100644 --- a/src/mailman_pgp/pgp/mime.py +++ b/src/mailman_pgp/pgp/mime.py @@ -47,8 +47,8 @@ class PGPMIMEWrapper: content_subtype = self.msg.get_content_subtype() return second_type == PGPMIMEWrapper._signed_subtype and \ - content_subtype == 'signed' and \ - protocol_param == PGPMIMEWrapper._signed_subtype + content_subtype == 'signed' and \ + protocol_param == PGPMIMEWrapper._signed_subtype def is_mime_encrypted(self): """ |
