summaryrefslogtreecommitdiff
path: root/src/mailman/interfaces/domain.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/interfaces/domain.py')
-rw-r--r--src/mailman/interfaces/domain.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mailman/interfaces/domain.py b/src/mailman/interfaces/domain.py
index b7fc1c91f..e1e41035a 100644
--- a/src/mailman/interfaces/domain.py
+++ b/src/mailman/interfaces/domain.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2010 by the Free Software Foundation, Inc.
+# Copyright (C) 2007-2011 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
@@ -30,7 +30,6 @@ __all__ = [
from zope.interface import Interface, Attribute
from mailman.core.errors import MailmanError
-from mailman.core.i18n import _
@@ -55,6 +54,9 @@ class IDomain(Interface):
The base url for the Mailman server at this domain, which includes the
scheme and host name.""")
+ scheme = Attribute(
+ """The protocol scheme used to contact this list's server.""")
+
description = Attribute(
'The human readable description of the domain name.')