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
This commit is contained in:
parent
ce48e8e940
commit
608548baa2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue