Django

Code

Changeset 3897

Show
Ignore:
Timestamp:
10/09/06 00:55:04 (2 years ago)
Author:
russellm
Message:

Fixed problem with debug message arguments.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management.py

    r3894 r3897  
    512512                if initial_sql: 
    513513                    if verbosity >= 1: 
    514                         print "Installing initial data for %s.%s model" % model._meta.object_name 
     514                        print "Installing initial data for %s.%s model" % (app_name, model._meta.object_name) 
    515515                    try: 
    516516                        for sql in initial_sql: