diff options
author | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-05 11:18:39 -0600 |
---|---|---|
committer | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-05 11:18:39 -0600 |
commit | 02409029d958cced911b3b18e025cf495656cb04 (patch) | |
tree | ed1a48d60d593de4c2af21c3049a5096ea5fa96f | |
parent | 6140720b3a4d2a4c00e425e4c23621b574109c35 (diff) | |
download | askbot-02409029d958cced911b3b18e025cf495656cb04.tar.gz askbot-02409029d958cced911b3b18e025cf495656cb04.tar.bz2 askbot-02409029d958cced911b3b18e025cf495656cb04.zip |
fixing a stupid bug now Python 2.4 compatible 100%
-rw-r--r-- | forum/models.py | 2 |
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])
|