summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR3v1L <R3v1L@users.noreply.github.com>2015-01-19 09:56:08 +0000
committerMarkus Holtermann <info@markusholtermann.eu>2015-01-19 12:26:00 +0100
commit4a5512a61d36e5923ae7de9f61bec042bc8b2d21 (patch)
tree10440d4b2973c28307ab6178c1245e96745887f4
parenteb6e12ca6f7a5d5ec1d6093657b887a06e75f5d8 (diff)
Refs #16905 -- Replaced call to removed method in runserver
Regression introduced in 0f169098efd099fd7ae13bd8e14b798530d74da7
-rw-r--r--django/core/management/commands/runserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/runserver.py b/django/core/management/commands/runserver.py
index f171456f97..7df5f15acf 100644
--- a/django/core/management/commands/runserver.py
+++ b/django/core/management/commands/runserver.py
@@ -108,7 +108,7 @@ class Command(BaseCommand):
quit_command = 'CTRL-BREAK' if sys.platform == 'win32' else 'CONTROL-C'
self.stdout.write("Performing system checks...\n\n")
- self.validate(display_num_errors=True)
+ self.check(display_num_errors=True)
try:
self.check_migrations()
except ImproperlyConfigured: