Loading django/core/compat_checks/__init__.py→django/core/checks/__init__.py +0 −0 File moved. tests/compat_checks/__init__.py→django/core/checks/compatibility/__init__.py +0 −0 File moved. django/core/compat_checks/base.py→django/core/checks/compatibility/base.py +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 = [ Loading django/core/compat_checks/django_1_6_0.py→django/core/checks/compatibility/django_1_6_0.py +1 −1 Original line number Diff line number Diff line Loading @@ -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 = [ Loading django/core/management/commands/checksetup.py→django/core/management/commands/check.py +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 Loading
django/core/compat_checks/base.py→django/core/checks/compatibility/base.py +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 = [ Loading
django/core/compat_checks/django_1_6_0.py→django/core/checks/compatibility/django_1_6_0.py +1 −1 Original line number Diff line number Diff line Loading @@ -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 = [ Loading
django/core/management/commands/checksetup.py→django/core/management/commands/check.py +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