Ticket #1524: management-installed-models.diff

File management-installed-models.diff, 634 bytes (added by Antti Kaihola, 18 years ago)

a wild guess at what the intended variable name is: not_installed_models

  • django/core/management.py

     
    114114    not_installed_models = set(pending_references.keys())
    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)])
    120120
Back to Top