From b0602e935ca8f7fca4d43083a752a6a418bb1e71 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 20 Jan 2014 19:48:06 +0800 Subject: [PATCH] Corrected documentation typo. Thanks to @cjerdonek for the report. --- docs/ref/django-admin.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 5f81bbc8e4..19d4716e90 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -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 --tag security --tag compatibility compilemessages ---------------