diff --git a/django/contrib/contenttypes/management.py b/django/contrib/contenttypes/management.py
index 5c7e12a..9469644 100644
a
|
b
|
def update_contenttypes(app, created_models, verbosity=2, **kwargs):
|
44 | 44 | # Confirm that the content type is stale before deletion. |
45 | 45 | if to_remove: |
46 | 46 | if kwargs.get('interactive', False): |
47 | | content_type_display = '\n'.join([' %s | %s' % (ct.app_label, ct.model) for ct in content_types]) |
| 47 | content_type_display = '\n'.join([ |
| 48 | ' %s | %s' % (app_label, model) |
| 49 | for (app_label, model) in content_types.items() |
| 50 | ]) |
48 | 51 | ok_to_delete = raw_input("""The following content types are stale and need to be deleted: |
49 | 52 | |
50 | 53 | %s |