mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Merge branch 'master' of github.com:samuelclay/NewsBlur
This commit is contained in:
commit
590328f373
1 changed files with 4 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue