From 1e5d5fc2639c2e147df10b58b73aeda4196efd32 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 28 Feb 2013 15:57:27 -0500 Subject: [PATCH] Be consistent about underscore usage. --- library/{django-manage => django_manage} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename library/{django-manage => django_manage} (97%) diff --git a/library/django-manage b/library/django_manage similarity index 97% rename from library/django-manage rename to library/django_manage index 64e96c8fd2d..006099b2e2a 100644 --- a/library/django-manage +++ b/library/django_manage @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- -module: django-manage +module: django_manage short_description: Manages a Django application. description: - Manages a Django application using the I(manage.py) application frontend to I(django-admin). With the I(virtualenv) parameter, all management commands will be executed by the given I(virtualenv) installation. @@ -78,13 +78,13 @@ author: Scott Anderson EXAMPLES = """ # Run cleanup on the application installed in '$django_dir'. -django-manage: command=cleanup app_path=$django_dir +django_manage: command=cleanup app_path=$django_dir # Load the $initial_data fixture into the application -django-manage: command=loaddata app_path=$django_dir fixtures=$initial_data +django_manage: command=loaddata app_path=$django_dir fixtures=$initial_data #Run syncdb on the application -django-manage: > +django_manage: > command=syncdb app_path=$django_dir settings=$settings_app_name @@ -93,7 +93,7 @@ django-manage: > database=$mydb #Run the SmokeTest test case from the main app. Useful for testing deploys. -django-manage command=test app_path=django_dir apps=main.SmokeTest +django_manage command=test app_path=django_dir apps=main.SmokeTest """