diff options
| author | Barry Warsaw | 2016-04-04 01:16:02 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-04 01:16:02 -0400 |
| commit | 3d1ed61f3c2b6bedfc2b6ba057fda79d6a9d1f23 (patch) | |
| tree | 608d512a7c9f3077fea337aa7d160715a6cfdf0c /src/mailman/core/system.py | |
| parent | 0b445dc57786778687900b47706b9ecb5b9d29ce (diff) | |
| download | mailman-3d1ed61f3c2b6bedfc2b6ba057fda79d6a9d1f23.tar.gz mailman-3d1ed61f3c2b6bedfc2b6ba057fda79d6a9d1f23.tar.zst mailman-3d1ed61f3c2b6bedfc2b6ba057fda79d6a9d1f23.zip | |
Diffstat (limited to 'src/mailman/core/system.py')
| -rw-r--r-- | src/mailman/core/system.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/core/system.py b/src/mailman/core/system.py index c4489d926..ee88c5adf 100644 --- a/src/mailman/core/system.py +++ b/src/mailman/core/system.py @@ -19,7 +19,7 @@ import sys -from mailman import version +from mailman import public, version from mailman.interfaces.system import ISystem from zope.interface import implementer @@ -39,5 +39,4 @@ class System: return sys.version -system = System() -__all__ = ['system'] +public(system=System()) |
