summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-02-12 00:48:37 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-02-12 00:48:37 +0000
commit9c80d77d7d70ef88421c16ceb52c0eee3ca16000 (patch)
treeeed689d7f2dde827f4194c3d47a6a9635f80fff2
parent5480a1eecfe384799740666d52090e9960ee833c (diff)
Clarified help message for ./manage.py sqlall
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/commands/sqlall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/sqlall.py b/django/core/management/commands/sqlall.py
index d63dfb4b10..cd2a14e283 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-data and CREATE INDEX SQL statements for the given model module name(s)."
+ help = "Prints the CREATE TABLE, initial SQL and CREATE INDEX SQL statements for the given model module name(s)."
output_transaction = True