Be consistent about underscore usage.

reviewable/pr18780/r1
Michael DeHaan 12 years ago
parent f503916485
commit 955b6001f6

@ -21,7 +21,7 @@
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: django-manage module: django_manage
short_description: Manages a Django application. short_description: Manages a Django application.
description: 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. - 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 = """ EXAMPLES = """
# Run cleanup on the application installed in '$django_dir'. # 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 # 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 #Run syncdb on the application
django-manage: > django_manage: >
command=syncdb command=syncdb
app_path=$django_dir app_path=$django_dir
settings=$settings_app_name settings=$settings_app_name
@ -93,7 +93,7 @@ django-manage: >
database=$mydb database=$mydb
#Run the SmokeTest test case from the main app. Useful for testing deploys. #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
""" """
Loading…
Cancel
Save