diff options
author | Mark Sapiro <mark@msapiro.net> | 2010-06-05 10:27:39 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2010-06-05 10:27:39 -0700 |
commit | f2116f6868195136488ffae43025b42e18e0c484 (patch) | |
tree | 31417964594528e40f5315cb3d7862a2ebc1ee45 /Mailman | |
parent | fdcd7bb734b7d2717506664fe3b99b65d6dfa092 (diff) | |
download | mailman2-f2116f6868195136488ffae43025b42e18e0c484.tar.gz mailman2-f2116f6868195136488ffae43025b42e18e0c484.tar.xz mailman2-f2116f6868195136488ffae43025b42e18e0c484.zip |
Removed an extraneous line of code from Decorate.py. Bug #590155.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Handlers/Decorate.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Mailman/Handlers/Decorate.py b/Mailman/Handlers/Decorate.py index 4a6fb8aa..69e86d5b 100644 --- a/Mailman/Handlers/Decorate.py +++ b/Mailman/Handlers/Decorate.py @@ -239,6 +239,5 @@ def decorate(mlist, template, what, extradict=None): re.sub(r'\r\n', r'\n', template % d)) except (ValueError, TypeError), e: syslog('error', 'Exception while calculating %s:\n%s', what, e) - what = what.upper() text = template return text |