From afd9b8771140a706337c988e7c383a310bc751ab Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 9 Oct 2006 05:55:04 +0000 Subject: [PATCH] Fixed problem with debug message arguments. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3897 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management.py b/django/core/management.py index 3173aef3e3..5e709db6ac 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -511,7 +511,7 @@ def syncdb(verbosity=1, interactive=True): initial_sql = get_sql_initial_data_for_model(model) if initial_sql: if verbosity >= 1: - print "Installing initial data for %s.%s model" % model._meta.object_name + print "Installing initial data for %s.%s model" % (app_name, model._meta.object_name) try: for sql in initial_sql: cursor.execute(sql)