summaryrefslogtreecommitdiff
path: root/src/mailman/interfaces/rest.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-05-02 18:07:38 -0400
committerBarry Warsaw2009-05-02 18:07:38 -0400
commit443aba66658347d0b747ff84ec1750cfb8c71924 (patch)
treeb60a131313455dfb8858cf01da599cb50ad48343 /src/mailman/interfaces/rest.py
parentea96bbebd8594a70f534aacdab949a63bf800b22 (diff)
downloadmailman-443aba66658347d0b747ff84ec1750cfb8c71924.tar.gz
mailman-443aba66658347d0b747ff84ec1750cfb8c71924.tar.zst
mailman-443aba66658347d0b747ff84ec1750cfb8c71924.zip
Diffstat (limited to 'src/mailman/interfaces/rest.py')
-rw-r--r--src/mailman/interfaces/rest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/interfaces/rest.py b/src/mailman/interfaces/rest.py
index 697c81da4..83a458c1d 100644
--- a/src/mailman/interfaces/rest.py
+++ b/src/mailman/interfaces/rest.py
@@ -21,7 +21,7 @@ from __future__ import absolute_import, unicode_literals
__metaclass__ = type
__all__ = [
- 'IHasGet',
+ 'IResolvePathNames',
]
@@ -29,8 +29,8 @@ from zope.interface import Interface
-class IHasGet(Interface):
- """A marker interface objects that implement traversal with get()."""
+class IResolvePathNames(Interface):
+ """A marker interface objects that implement simple traversal."""
def get(name):
"""Traverse to a contained object."""