diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2014-01-20 20:46:21 +0800 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2014-01-20 20:46:21 +0800 |
| commit | e8920e96d0a36c5bbe75e7bdaa45e0016f72cfa5 (patch) | |
| tree | 72f4515f1dcb5eb574fb9496c5c0e017918b5cd8 /docs/ref | |
| parent | 53aa6c6ac1b6534f2e3a159014401b84bf1f70c1 (diff) | |
Added a missing command to the command line examples for check.
Thanks to Bruno Renie for the report.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 19d4716e90..1fd2eb0fee 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -113,7 +113,7 @@ Custom checks may be introduced by other libraries and applications. By default, all apps will be checked. You can check a subset of apps by providing a list of app labels as arguments:: - python manage.py auth admin myapp + python manage.py check auth admin myapp If you do not specify any app, all apps will be checked. @@ -124,7 +124,7 @@ types of checks. These check types are categorized with tags. You can use these to restrict the checks performed to just those in a particular category. For example, to perform only security and compatibility checks, you would run:: - python manage.py --tag security --tag compatibility + python manage.py check --tag security --tag compatibility compilemessages --------------- |
