diff options
author | bwarsaw <> | 2005-05-01 22:28:32 +0000 |
---|---|---|
committer | bwarsaw <> | 2005-05-01 22:28:32 +0000 |
commit | 3ce85e4b97dbdff3225d4358d044056fa4110832 (patch) | |
tree | 78cb00d551aff1794f520d050a06e1d65f3aaf42 /Mailman | |
parent | 9fa65e0d461237008296ef047e86f686d5ecbc19 (diff) | |
download | mailman2-3ce85e4b97dbdff3225d4358d044056fa4110832.tar.gz mailman2-3ce85e4b97dbdff3225d4358d044056fa4110832.tar.xz mailman2-3ce85e4b97dbdff3225d4358d044056fa4110832.zip |
prepare_message(): Fixed typo.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Queue/NewsRunner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/NewsRunner.py b/Mailman/Queue/NewsRunner.py index be1dd93d..5e5ac6e0 100644 --- a/Mailman/Queue/NewsRunner.py +++ b/Mailman/Queue/NewsRunner.py @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2003 by the Free Software Foundation, Inc. +# Copyright (C) 2000-2005 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -106,7 +106,7 @@ def prepare_message(mlist, msg, msgdata): # crafted in CookHeaders.py to ensure prefix was stripped from the subject # came from mailing list user. stripped_subject = msgdata.get('stripped_subject') \ - or msgdaga.get('origsubj') + or msgdata.get('origsubj') if not mlist.news_prefix_subject_too and stripped_subject is not None: del msg['subject'] msg['subject'] = stripped_subject |