diff --git a/oxdata/lookup/cache.py b/oxdata/lookup/cache.py index 4534e19..940d7a9 100644 --- a/oxdata/lookup/cache.py +++ b/oxdata/lookup/cache.py @@ -42,7 +42,8 @@ def get_ids(): print('missing impawards', ox.web.impawards.get_url(id)) for id in ox.web.criterion.get_ids(): - if id in ('626', '835', '1079', '28907'): + id = int(id) + if id in (626, 835, 1079, 28907, 30616): continue if models.MovieId.objects.all().filter(criterion_id=id).count() == 0: print('criterion', id)