diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-02-12 01:01:27 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-02-12 01:01:27 +0000 |
| commit | 4415f45366f115ff8085ffed05f7034e020d37eb (patch) | |
| tree | a6f2f5edfc4f2fb4137974e5aad740cf57e4cd7f | |
| parent | 9c80d77d7d70ef88421c16ceb52c0eee3ca16000 (diff) | |
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
| -rw-r--r-- | django/core/management/commands/sqlall.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
