Django

Code

Changeset 2537

Show
Ignore:
Timestamp:
03/20/06 07:48:26 (3 years ago)
Author:
lukeplant
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/django/core/management.py

    r2529 r2537  
    115115    if not_installed_models: 
    116116        final_output.append('-- The following references should be added but depend on non-existant tables:') 
    117         for klass in not_found_models: 
     117        for klass in not_installed_models: 
    118118            final_output.extend(['-- ' + sql for sql in  
    119119                _get_sql_for_pending_references(klass, pending_references)])