aboutsummaryrefslogtreecommitdiffstats
path: root/ryuslash/aggregator/management/commands/loadfeeds.py
diff options
context:
space:
mode:
Diffstat (limited to 'ryuslash/aggregator/management/commands/loadfeeds.py')
-rw-r--r--ryuslash/aggregator/management/commands/loadfeeds.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/ryuslash/aggregator/management/commands/loadfeeds.py b/ryuslash/aggregator/management/commands/loadfeeds.py
index f826312..5663653 100644
--- a/ryuslash/aggregator/management/commands/loadfeeds.py
+++ b/ryuslash/aggregator/management/commands/loadfeeds.py
@@ -87,13 +87,15 @@ class Command(BaseCommand):
if feedoptions.get('nl2br'):
content = re.sub('\n', '</br>\n', content)
- post = Post(post_id=entry.id,
- title=entry.title,
- category=feedoptions['category'],
- link=entry.link,
- updated=updated,
- icon=icon,
- content=content)
+ post = Post(
+ post_id=entry.id,
+ title=entry.title if feedoptions.get('title') else '',
+ category=feedoptions['category'],
+ link=entry.link,
+ updated=updated,
+ icon=icon,
+ content=content
+ )
post.save()
newcount += 1