summaryrefslogtreecommitdiff
path: root/mailman/htmlformat.py
diff options
context:
space:
mode:
authorBarry Warsaw2008-03-31 14:12:04 -0400
committerBarry Warsaw2008-03-31 14:12:04 -0400
commit99113155a828f14ae9df817e9c02855683dea02f (patch)
treeeffbc5a3786c7365140c70a6e00a9d8c55748b95 /mailman/htmlformat.py
parent65ec767071f34a22ad6cb01d79a1dd6440e0411f (diff)
downloadmailman-99113155a828f14ae9df817e9c02855683dea02f.tar.gz
mailman-99113155a828f14ae9df817e9c02855683dea02f.tar.zst
mailman-99113155a828f14ae9df817e9c02855683dea02f.zip
Diffstat (limited to 'mailman/htmlformat.py')
-rw-r--r--mailman/htmlformat.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mailman/htmlformat.py b/mailman/htmlformat.py
index fa3f4d1a4..e1a6d5b84 100644
--- a/mailman/htmlformat.py
+++ b/mailman/htmlformat.py
@@ -23,7 +23,7 @@ for python and, recursively, for nested HTML formatting objects.
from Mailman import Defaults
from Mailman import Utils
-from Mailman import Version
+from Mailman import version
from Mailman.configuration import config
from Mailman.i18n import _
@@ -606,7 +606,7 @@ def MailmanLogo():
def logo(file):
return config.IMAGE_LOGOS + file
mmlink = '<img src="%s" alt="Delivered by Mailman" border=0>' \
- '<br>version %s' % (logo(DELIVERED_BY), Version.VERSION)
+ '<br>version %s' % (logo(DELIVERED_BY), version.VERSION)
pylink = '<img src="%s" alt="Python Powered" border=0>' % \
logo(PYTHON_POWERED)
gnulink = '<img src="%s" alt="GNU\'s Not Unix" border=0>' % \
@@ -614,7 +614,7 @@ def MailmanLogo():
t.AddRow([mmlink, pylink, gnulink])
else:
# use only textual links
- version = Version.VERSION
+ version = version.VERSION
mmlink = Link(config.MAILMAN_URL,
_('Delivered by Mailman<br>version %(version)s'))
pylink = Link(PYTHON_URL, _('Python Powered'))