From 46d8bbab3d078a99167fc841e152bb9a2cf464fb Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 10 Aug 2005 20:16:15 +0000 Subject: [PATCH] Added help_doc to django.core.management.install git-svn-id: http://code.djangoproject.com/svn/django/trunk@470 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/core/management.py b/django/core/management.py index 1fdb3d4ac17a4..b83dfb9e8fe7f 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -321,6 +321,7 @@ def install(mod): db.db.rollback() sys.exit(1) db.db.commit() +install.help_doc = "Executes ``sqlall`` for the given app(s) in the current database." install.args = APP_ARGS def _start_helper(app_or_project, name, directory, other_name=''):