From 608548baa200d3945dee419787e3996d3e5a0b15 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 15 Sep 2011 23:55:30 +0000 Subject: [PATCH] Fixed #16854 -- corrected an AttributeError coming from the contenttypes post-syncdb hook. Thanks to desh for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16832 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/contenttypes/management.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/django/contrib/contenttypes/management.py b/django/contrib/contenttypes/management.py index 5c7e12a847..d47d5579ba 100644 --- a/django/contrib/contenttypes/management.py +++ b/django/contrib/contenttypes/management.py @@ -44,7 +44,10 @@ def update_contenttypes(app, created_models, verbosity=2, **kwargs): # Confirm that the content type is stale before deletion. if to_remove: if kwargs.get('interactive', False): - content_type_display = '\n'.join([' %s | %s' % (ct.app_label, ct.model) for ct in content_types]) + content_type_display = '\n'.join([ + ' %s | %s' % (ct.app_label, ct.model) + for ct in to_remove + ]) ok_to_delete = raw_input("""The following content types are stale and need to be deleted: %s