summaryrefslogtreecommitdiffstats
path: root/askbot/const
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-23 03:13:48 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-23 03:13:48 -0400
commit337799fc932f04aa07f32ca6605a353983ec8564 (patch)
treecf1ae5f9c0fbde33d8b3197c00a26d659736958a /askbot/const
parentdfd883a85323305e12e9e900796410067fa91240 (diff)
downloadaskbot-337799fc932f04aa07f32ca6605a353983ec8564.tar.gz
askbot-337799fc932f04aa07f32ca6605a353983ec8564.tar.bz2
askbot-337799fc932f04aa07f32ca6605a353983ec8564.zip
fixed the regex to split out the email response
Diffstat (limited to 'askbot/const')
-rw-r--r--askbot/const/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/const/__init__.py b/askbot/const/__init__.py
index 9942e27d..3fb9ddbb 100644
--- a/askbot/const/__init__.py
+++ b/askbot/const/__init__.py
@@ -53,7 +53,7 @@ POST_SORT_METHODS = (
)
REPLY_SEPARATOR_TEMPLATE = '==== %(user_action)s %(instruction)s -=-=='
-REPLY_SEPARATOR_REGEX = re.compile('^==== .* -=-==$', re.MULTILINE)
+REPLY_SEPARATOR_REGEX = re.compile('==== .* -=-==', re.MULTILINE)
ANSWER_SORT_METHODS = (#no translations needed here
'latest', 'oldest', 'votes'