Commit 03465639 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #20653 -- Renamed checksetup management command.

This is to allow future compatibility with work that is ongoing in the 2013 GSoC.
parent 5a6f1218
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
from __future__ import unicode_literals
import warnings

from django.core.compat_checks import django_1_6_0
from django.core.checks.compatibility import django_1_6_0


COMPAT_CHECKS = [
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ def check_test_runner():

def run_checks():
    """
    Required by the ``checksetup`` management command, this returns a list of
    Required by the ``check`` management command, this returns a list of
    messages from all the relevant check functions for this version of Django.
    """
    checks = [
+1 −1
Original line number Diff line number Diff line
from __future__ import unicode_literals
import warnings

from django.core.compat_checks.base import check_compatibility
from django.core.checks.compatibility.base import check_compatibility
from django.core.management.base import NoArgsCommand


Loading