summaryrefslogtreecommitdiffstats
path: root/askbot/models/answer.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/models/answer.py')
-rw-r--r--askbot/models/answer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/answer.py b/askbot/models/answer.py
index 6a2cceee..b9b28f89 100644
--- a/askbot/models/answer.py
+++ b/askbot/models/answer.py
@@ -289,7 +289,7 @@ class Answer(content.Content, DeletableContent):
return self.question.title
def get_absolute_url(self):
- return u'%(base)s%(slug)s?answer=%(id)d#%(id)d' % \
+ return u'%(base)s%(slug)s?answer=%(id)d#answer-container-%(id)d' % \
{
'base': reverse('question', args=[self.question.id]),
'slug': django_urlquote(slugify(self.question.title)),