summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-07 20:18:07 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-07 20:18:07 -0300
commit815a41f34eb158a3b51b3febb0bada93bd0ce23d (patch)
tree3d79545eff051a00e4a090170a165cfa04482e64
parentf91d1cd5d15270cc80d8ce391b53e2d2c91d2b0d (diff)
downloadaskbot-815a41f34eb158a3b51b3febb0bada93bd0ce23d.tar.gz
askbot-815a41f34eb158a3b51b3febb0bada93bd0ce23d.tar.bz2
askbot-815a41f34eb158a3b51b3febb0bada93bd0ce23d.zip
fixed a typo
-rw-r--r--askbot/mail/parsing.py2
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):