From 4415f45366f115ff8085ffed05f7034e020d37eb Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 12 Feb 2008 01:01:27 +0000 Subject: [PATCH] Further clarification of help message for ./manage.py sqlall, this time using the same term used in the documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7106 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management/commands/sqlall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/commands/sqlall.py b/django/core/management/commands/sqlall.py index cd2a14e283..bf3c734bb6 100644 --- a/django/core/management/commands/sqlall.py +++ b/django/core/management/commands/sqlall.py @@ -1,7 +1,7 @@ from django.core.management.base import AppCommand class Command(AppCommand): - help = "Prints the CREATE TABLE, initial SQL and CREATE INDEX SQL statements for the given model module name(s)." + help = "Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s)." output_transaction = True