diff options
author | bwarsaw <> | 2003-09-22 02:37:51 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-09-22 02:37:51 +0000 |
commit | c43087be33f78a895b74869800a775c4a0cb9a27 (patch) | |
tree | 7f5418e8b5a8eb70d0639ef9d11f16d685f57517 /Mailman/Handlers/CookHeaders.py | |
parent | d206e467d12f5e5a6e08f6ed11a559054f2e183f (diff) | |
download | mailman2-c43087be33f78a895b74869800a775c4a0cb9a27.tar.gz mailman2-c43087be33f78a895b74869800a775c4a0cb9a27.tar.xz mailman2-c43087be33f78a895b74869800a775c4a0cb9a27.zip |
Backporting from the HEAD -- updated handlers
Diffstat (limited to 'Mailman/Handlers/CookHeaders.py')
-rw-r--r-- | Mailman/Handlers/CookHeaders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py index 9ef5550c..2ec1f3f7 100644 --- a/Mailman/Handlers/CookHeaders.py +++ b/Mailman/Handlers/CookHeaders.py @@ -169,7 +169,7 @@ def process(mlist, msg, msgdata): if mlist.description: # Make sure description is properly i18n'd listid_h = uheader(mlist, mlist.description, 'List-Id') - listid_h.append(' ' + listid, 'us-ascii') + listid_h.append(listid, 'us-ascii') else: # For wrapping listid_h = Header(listid, 'us-ascii', header_name='List-Id') |