summaryrefslogtreecommitdiff
path: root/mailman/interfaces/member.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-01-16 21:04:21 -0500
committerBarry Warsaw2009-01-16 21:04:21 -0500
commitae3d0cc316b826b8325507d960ccf84da601c3b0 (patch)
tree3485e2ca463c2131a0ffb1693bc60d569cc9d8b7 /mailman/interfaces/member.py
parenta3f7d07c62b2f7d6ac9d0b700883826c2838db60 (diff)
downloadmailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.tar.gz
mailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.tar.zst
mailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.zip
Diffstat (limited to 'mailman/interfaces/member.py')
-rw-r--r--mailman/interfaces/member.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mailman/interfaces/member.py b/mailman/interfaces/member.py
index 697117219..2e966879d 100644
--- a/mailman/interfaces/member.py
+++ b/mailman/interfaces/member.py
@@ -17,6 +17,7 @@
"""Interface describing the basics of a member."""
+from __future__ import absolute_import, unicode_literals
__metaclass__ = type
__all__ = [
@@ -78,7 +79,7 @@ class AlreadySubscribedError(SubscriptionError):
self._role = role
def __str__(self):
- return '%s is already a %s of mailing list %s' % (
+ return '{0} is already a {1} of mailing list {2}'.format(
self._address, self._role, self._fqdn_listname)