diff options
-rw-r--r-- | askbot/mail/parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/mail/parsing.py b/askbot/mail/parsing.py index 4472a22e..6308034d 100644 --- a/askbot/mail/parsing.py +++ b/askbot/mail/parsing.py @@ -57,7 +57,7 @@ def strip_email_client_quote_separator(text): return regex.sub('', text) #did not find a quote separator!!! log it log_message = u'\nno matching quote separator: %s\n' % text - sys.err.write(log_message.encode('utf-8')) + sys.stderr.write(log_message.encode('utf-8')) return text[:-2]#strip two lines, only guessing here def extract_reply_contents(text, reply_separator=None): |