summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--forum/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/models.py b/forum/models.py
index 597fe6db..17499d21 100644
--- a/forum/models.py
+++ b/forum/models.py
@@ -176,7 +176,7 @@ class Question(models.Model):
if (attr is not None):
return u'%s %s' % (self.title, attr)
else:
- self.title
+ return self.title
def get_revision_url(self):
return reverse('question_revisions', args=[self.id])