summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-07-30 03:36:57 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-07-30 03:36:57 -0300
commit9c5257d3c38c0d509349f3fad447f3afb3afdc9e (patch)
tree051598c8947062fdc12263a1b639225963bff6dd
parenta807440966f9bb5c3179cb3defff89e90e8f7845 (diff)
downloadaskbot-9c5257d3c38c0d509349f3fad447f3afb3afdc9e.tar.gz
askbot-9c5257d3c38c0d509349f3fad447f3afb3afdc9e.tar.bz2
askbot-9c5257d3c38c0d509349f3fad447f3afb3afdc9e.zip
small bugfix
-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 bc94c094..efb5d749 100644
--- a/askbot/models/__init__.py
+++ b/askbot/models/__init__.py
@@ -1420,7 +1420,7 @@ def user_merge_duplicate_questions(self, from_q, to_q):
for answer in author_answers:
first_answer.merge_post(answer)
- from_thread.spaces.clear()
+ #from_thread.spaces.clear()
from_thread.delete()
to_thread.invalidate_cached_data()