diff options
author | bwarsaw <> | 2003-09-22 02:58:13 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-09-22 02:58:13 +0000 |
commit | 680008b74212ead3d6178e29880a0c823d142f83 (patch) | |
tree | db18fda7a95defced9ed8184890acbc62f7eecab /Mailman/htmlformat.py | |
parent | 124e5282903d8c8e242bcf47c8a29d7a8c3f0391 (diff) | |
download | mailman2-680008b74212ead3d6178e29880a0c823d142f83.tar.gz mailman2-680008b74212ead3d6178e29880a0c823d142f83.tar.xz mailman2-680008b74212ead3d6178e29880a0c823d142f83.zip |
Backporting from the HEAD -- Mailman package
Diffstat (limited to '')
-rw-r--r-- | Mailman/htmlformat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/htmlformat.py b/Mailman/htmlformat.py index 0175bccb..f41c0b43 100644 --- a/Mailman/htmlformat.py +++ b/Mailman/htmlformat.py @@ -323,7 +323,7 @@ class Document(Container): if mm_cfg.WEB_ALINK_COLOR: kws.setdefault('alink', mm_cfg.WEB_ALINK_COLOR) if mm_cfg.WEB_LINK_COLOR: - kws.setdefault('alink', mm_cfg.WEB_LINK_COLOR) + kws.setdefault('link', mm_cfg.WEB_LINK_COLOR) for k, v in kws.items(): quals.append('%s="%s"' % (k, v)) output.append('%s<BODY %s>' % (tab, SPACE.join(quals))) |