Corrected fix committed in r13466. Refs #14025.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13471 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-08-05 01:29:59 +00:00
parent 099c6b8710
commit 1c8547bf98
1 changed files with 6 additions and 6 deletions

View File

@ -66,12 +66,12 @@ The full error: %s""" % (connection.settings_dict['NAME'], e))
# Emit the post sync signal. This allows individual # Emit the post sync signal. This allows individual
# applications to respond as if the database had been # applications to respond as if the database had been
# sync'd from scratch. # sync'd from scratch.
all_models = [ all_models = []
(app.__name__.split('.')[-2], for app in models.get_apps():
[m for m in models.get_models(app, include_auto_created=True) all_models.extend([
if router.allow_syncdb(db, m)]) m for m in models.get_models(app, include_auto_created=True)
for app in models.get_apps() if router.allow_syncdb(db, m)
] ])
emit_post_sync_signal(all_models, verbosity, interactive, db) emit_post_sync_signal(all_models, verbosity, interactive, db)
# Reinstall the initial_data fixture. # Reinstall the initial_data fixture.