mirror of
https://github.com/django/django.git
synced 2025-04-04 05:26:43 +00:00
[1.8.x] Explicitly checked for LookupError in contenttypes migration
Backport of 4dd1f4c5eb7a617c1ee512e7a7c732d530e13916 from master
This commit is contained in:
parent
e63d9b98e7
commit
681efedce4
@ -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()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user