summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-25 13:24:59 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-25 13:24:59 -0400
commite466bd2a8c42bf3e1bf6a1cd7dddb8a747ce06ba (patch)
treeec137460ad401baa86dc4a3cf4add45aa4dbcdb4
parent25424f28dc4d04a2985bb524d3e6eb1f04abcb24 (diff)
downloadaskbot-e466bd2a8c42bf3e1bf6a1cd7dddb8a747ce06ba.tar.gz
askbot-e466bd2a8c42bf3e1bf6a1cd7dddb8a747ce06ba.tar.bz2
askbot-e466bd2a8c42bf3e1bf6a1cd7dddb8a747ce06ba.zip
fixed a bug in the notification sending
-rw-r--r--askbot/models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/__init__.py b/askbot/models/__init__.py
index 17f25a03..1b254ee4 100644
--- a/askbot/models/__init__.py
+++ b/askbot/models/__init__.py
@@ -2698,7 +2698,7 @@ def format_instant_notification_email(
content = template.render(Context(update_data))
if can_reply:
- content += '<p style="font-size:8px;color:#aaa'> + reply_code + '</p>'
+ content += '<p style="font-size:8px;color:#aaa' + reply_code + '</p>'
return subject_line, content