summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-12-20 13:08:45 -0500
committerTim Graham <timograham@gmail.com>2017-12-20 14:38:06 -0500
commite7b804c060a1f9fc089cf935801aa85b09db062b (patch)
treed6cb8bff6cf0881048215c0d8d5b23773fdd8893 /django
parentc8a85e3e91bf829671b4a8cbd105fbabce945174 (diff)
Fixed #28941 -- Fixed crash in testserver command startup.
Regression in 2b09e4c88e96cb03b29f5a6b0e4838ab4271e631.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/runserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/management/commands/runserver.py b/django/core/management/commands/runserver.py
index d22f76054a..fd49817f81 100644
--- a/django/core/management/commands/runserver.py
+++ b/django/core/management/commands/runserver.py
@@ -27,6 +27,7 @@ class Command(BaseCommand):
# Validation is called explicitly each time the server is reloaded.
requires_system_checks = False
leave_locale_alone = True
+ stealth_options = ('shutdown_message',)
default_addr = '127.0.0.1'
default_addr_ipv6 = '::1'