1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

magic-removal: Fixed a variable name change that was omitted in r2529

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2537 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2006-03-20 13:48:26 +00:00
parent 4f2752c333
commit 3c7e06e103

View File

@ -114,7 +114,7 @@ def get_sql_create(app):
not_installed_models = set(pending_references.keys())
if not_installed_models:
final_output.append('-- The following references should be added but depend on non-existant tables:')
for klass in not_found_models:
for klass in not_installed_models:
final_output.extend(['-- ' + sql for sql in
_get_sql_for_pending_references(klass, pending_references)])