diff options
Diffstat (limited to 'src/mailman/core/system.py')
| -rw-r--r-- | src/mailman/core/system.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mailman/core/system.py b/src/mailman/core/system.py index 0f6d0834f..18fdfc10c 100644 --- a/src/mailman/core/system.py +++ b/src/mailman/core/system.py @@ -26,7 +26,9 @@ __all__ = [ import sys + from zope.interface import implements +from zope.location.interfaces import ILocation from mailman import version from mailman.interfaces.system import ISystem @@ -34,14 +36,16 @@ from mailman.interfaces.system import ISystem class System: - implements(ISystem) + implements(ISystem, ILocation) @property def mailman_version(self): + """See `ISystem`.""" return version.MAILMAN_VERSION_FULL @property def python_version(self): + """See `ISystem`.""" return sys.version |
