[1.8.x] Explicitly checked for LookupError in contenttypes migration

Backport of 4dd1f4c5eb from master
This commit is contained in:
Markus Holtermann 2015-02-16 17:08:19 +01:00
parent e63d9b98e7
commit 681efedce4
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def add_legacy_name(apps, schema_editor):
for ct in ContentType.objects.all():
try:
ct.name = apps.get_model(ct.app_label, ct.model)._meta.object_name
except:
except LookupError:
ct.name = ct.model
ct.save()