summaryrefslogtreecommitdiff
path: root/Mailman/Commands/cmd_help.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-07-21 16:19:54 -0400
committerBarry Warsaw2007-07-21 16:19:54 -0400
commit276009e248e64cf0c60989c93b2f3d6b9713c199 (patch)
tree7b630f12e1b0feaa8cc9f77e9d11188629e2b8d2 /Mailman/Commands/cmd_help.py
parent61d8ec7117463493b946c0f82872fe716d7bc901 (diff)
parenta55d4aa436f34e5d3f1e0e06b372b57de323aa61 (diff)
downloadmailman-276009e248e64cf0c60989c93b2f3d6b9713c199.tar.gz
mailman-276009e248e64cf0c60989c93b2f3d6b9713c199.tar.zst
mailman-276009e248e64cf0c60989c93b2f3d6b9713c199.zip
Diffstat (limited to 'Mailman/Commands/cmd_help.py')
-rw-r--r--Mailman/Commands/cmd_help.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Commands/cmd_help.py b/Mailman/Commands/cmd_help.py
index 33e908295..1afe25697 100644
--- a/Mailman/Commands/cmd_help.py
+++ b/Mailman/Commands/cmd_help.py
@@ -19,11 +19,11 @@
Print this help message.
"""
-import sys
import os
+import sys
-from Mailman import mm_cfg
from Mailman import Utils
+from Mailman.configuration import config
from Mailman.i18n import _
EMPTYSTRING = ''
@@ -81,7 +81,7 @@ def process(res, args):
helptext = Utils.maketext(
'help.txt',
{'listname' : mlist.real_name,
- 'version' : mm_cfg.VERSION,
+ 'version' : config.VERSION,
'listinfo_url': mlist.GetScriptURL('listinfo', absolute=1),
'requestaddr' : mlist.GetRequestEmail(),
'adminaddr' : mlist.GetOwnerEmail(),