summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-25 15:05:48 -0400
committerTim Graham <timograham@gmail.com>2015-04-25 15:06:49 -0400
commitf6ecb5407e5e7bb11e8d1a36413f20eebc39e0af (patch)
tree3cb8e09a524148fb54bc49d75c02e11cc22d7b96
parentbb40d9820ffcb5c4cb0bc3c5549fa284a774c250 (diff)
[1.7.x] Fixed #24704 -- Clarified system check interaction with runserver.
Backport of 0f2e82b9ec9797147945a6f9a402b5ae0fb1d9f4 from master
-rw-r--r--docs/ref/django-admin.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index ee0b7b9268..d7ae9a9dd7 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -891,9 +891,9 @@ reduction.
``pyinotify`` support was added.
When you start the server, and each time you change Python code while the
-server is running, the server will check your entire Django project for errors (see
-the :djadmin:`check` command). If any errors are found, they will be printed
-to standard output, but it won't stop the server.
+server is running, the system check framework will check your entire Django
+project for some common errors (see the :djadmin:`check` command). If any
+errors are found, they will be printed to standard output.
You can run as many servers as you want, as long as they're on separate ports.
Just execute ``django-admin.py runserver`` more than once.