summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-10 13:36:45 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-10 13:36:45 -0400
commitd7335c1e439ec703dc03fd4c9c9505680f3273f3 (patch)
tree188d6f434a45e9852e9f9847fb221c2ad5a01799
parent4d576186a76f87ee0967f7aa4ddd7cf77841083b (diff)
downloadaskbot-d7335c1e439ec703dc03fd4c9c9505680f3273f3.tar.gz
askbot-d7335c1e439ec703dc03fd4c9c9505680f3273f3.tar.bz2
askbot-d7335c1e439ec703dc03fd4c9c9505680f3273f3.zip
fixed another source of "blank tags"
-rw-r--r--askbot/utils/mail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/utils/mail.py b/askbot/utils/mail.py
index 37245b5a..aa4df320 100644
--- a/askbot/utils/mail.py
+++ b/askbot/utils/mail.py
@@ -281,7 +281,7 @@ def process_emailed_question(from_address, subject, parts, tags = None):
user.post_question(
title = title,
- tags = tagnames,
+ tags = tagnames.strip(),
body_text = body_text,
by_email = True,
email_address = from_address