diff --git a/apps/rss_feeds/migrations/0013_clear_storiespermonth.py b/apps/rss_feeds/migrations/0013_clear_storiespermonth.py index 0650c4f4e..1a82a934b 100644 --- a/apps/rss_feeds/migrations/0013_clear_storiespermonth.py +++ b/apps/rss_feeds/migrations/0013_clear_storiespermonth.py @@ -11,7 +11,10 @@ class Migration(DataMigration): for feed in Feed.objects.all(): feed.stories_last_year = None feed.save() - feed.count_stories(verbose=True) + try: + feed.count_stories(verbose=True) + except Exception, e: + print ' ---> Exception: %s' % e def backwards(self, orm):