summaryrefslogtreecommitdiffstats
path: root/askbot/feed.py
diff options
context:
space:
mode:
authorTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2011-12-30 00:38:13 +0100
committerTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2011-12-30 00:38:13 +0100
commit857bb4a7d27635184c9f69118547107b1860ebcf (patch)
tree99223fe5edecbc4845ad714a039797ada229e80e /askbot/feed.py
parent1e646e24c1a008a20254cb14f405c1babbf0cb33 (diff)
downloadaskbot-857bb4a7d27635184c9f69118547107b1860ebcf.tar.gz
askbot-857bb4a7d27635184c9f69118547107b1860ebcf.tar.bz2
askbot-857bb4a7d27635184c9f69118547107b1860ebcf.zip
BigMigration: Question, Answer, Comment models REMOVED; Initial adjustements of the codebase to make `questions()` and `question()` views roughly work
Diffstat (limited to 'askbot/feed.py')
-rw-r--r--askbot/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/feed.py b/askbot/feed.py
index d7a3d513..8dfc17f2 100644
--- a/askbot/feed.py
+++ b/askbot/feed.py
@@ -16,7 +16,7 @@ from django.contrib.syndication.feeds import Feed
from django.contrib.contenttypes.models import ContentType
from django.utils.translation import ugettext as _
from django.core.exceptions import ObjectDoesNotExist
-from askbot.models import Question, Answer, Comment
+#from askbot.models import Question, Answer, Comment
from askbot.conf import settings as askbot_settings
import itertools