Trimming only feeds that were fetched once, to ensure they have stories used to compare duplicate feeds.

This commit is contained in:
Samuel Clay 2010-08-11 16:43:56 -04:00
parent 44af86e359
commit 7cc6681acd

View file

@ -15,7 +15,7 @@ class Command(BaseCommand):
def handle(self, *args, **options):
feeds = Feed.objects.all()
feeds = Feed.objects.filter(fetched_once=True)
for f in feeds:
f.trim_feed()