diff options
| author | Barry Warsaw | 2009-05-02 18:07:38 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2009-05-02 18:07:38 -0400 |
| commit | 443aba66658347d0b747ff84ec1750cfb8c71924 (patch) | |
| tree | b60a131313455dfb8858cf01da599cb50ad48343 /src/mailman/interfaces/rest.py | |
| parent | ea96bbebd8594a70f534aacdab949a63bf800b22 (diff) | |
| download | mailman-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.py | 6 |
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.""" |
