← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~cjwatson/launchpad/modern-email-naming into lp:launchpad

 

Colin Watson has proposed merging lp:~cjwatson/launchpad/modern-email-naming into lp:launchpad.

Commit message:
Fix broken import.

Requested reviews:
  Colin Watson (cjwatson)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/modern-email-naming/+merge/252953

Fix import broken by previous merge.
-- 
Your team Launchpad code reviewers is subscribed to branch lp:launchpad.
=== modified file 'lib/lp/services/mail/signedmessage.py'
--- lib/lp/services/mail/signedmessage.py	2015-03-13 19:05:50 +0000
+++ lib/lp/services/mail/signedmessage.py	2015-03-13 21:08:28 +0000
@@ -12,6 +12,7 @@
     ]
 
 import email
+from email.message import Message
 import re
 
 from zope.interface import implements
@@ -46,7 +47,7 @@
     return msg
 
 
-class SignedMessage(email.message.Message):
+class SignedMessage(Message):
     """Provides easy access to signed content and the signature"""
     implements(ISignedMessage)
 


References