Django

Code

Changeset 7679

Show
Ignore:
Timestamp:
06/17/08 08:58:19 (5 months ago)
Author:
russellm
Message:

Fixed #7044 -- Corrected a minor typo in a docstring in the model loader. Thanks, msaelices.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/models/loading.py

    r6087 r7679  
    158158        for model in models: 
    159159            # Store as 'name: model' pair in a dictionary 
    160             # in the _app_models dictionary 
     160            # in the app_models dictionary 
    161161            model_name = model._meta.object_name.lower() 
    162162            model_dict = self.app_models.setdefault(app_label, {})