From e4f4d7b5732b2e9e31f72c8ae94760ca1f6e1a8d Mon Sep 17 00:00:00 2001 From: hernani Date: Sat, 24 Apr 2010 00:02:29 +0000 Subject: [PATCH 1/1] not explicit cast causing errors at startup git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@70 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- forum/feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forum/feed.py b/forum/feed.py index e4b929e..0a08825 100644 --- a/forum/feed.py +++ b/forum/feed.py @@ -15,7 +15,7 @@ from django.utils.translation import ugettext as _ from models import Question from django.conf import settings class RssLastestQuestionsFeed(Feed): - title = settings.APP_TITLE + _(' - ')+ _('latest questions') + title = str(settings.APP_TITLE) + _(' - ')+ _('latest questions') link = settings.APP_URL #+ '/' + _('question/') description = settings.APP_DESCRIPTION #ttl = 10 -- 2.39.5