aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-05-23 00:03:30 +0200
committerGravatar Tom Willemse2013-05-23 00:03:30 +0200
commit91283adebd1531fc7e676fcd29734b46a989525f (patch)
tree8957bdfabd57df99145eda3357c9f27065fbb5f2
parent268508e79ce399c5ccdd982d5912f5809673237d (diff)
downloadryuslash.org-91283adebd1531fc7e676fcd29734b46a989525f.tar.gz
ryuslash.org-91283adebd1531fc7e676fcd29734b46a989525f.zip
Don't save category in posts
Since the Feed keeps track of this, there's no need to keep it in the Post.
-rw-r--r--ryuslash/aggregator/management/commands/loadfeeds.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/ryuslash/aggregator/management/commands/loadfeeds.py b/ryuslash/aggregator/management/commands/loadfeeds.py
index aba82c1..198e227 100644
--- a/ryuslash/aggregator/management/commands/loadfeeds.py
+++ b/ryuslash/aggregator/management/commands/loadfeeds.py
@@ -82,7 +82,6 @@ class Command(BaseCommand):
post = Post(
post_id=entry.id,
title=entry.title if feed.uses_titles else '',
- category=feed.category,
link=entry.link,
updated=updated,
icon=icon,