diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-17 19:00:12 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-17 19:12:03 -0500 |
| commit | 0622bca5d1b25877167b7beda96edcd3ba58db8d (patch) | |
| tree | 32df33bbf2ac65345a65eb4ddbad6f462042c2d1 /django | |
| parent | 714277cb4cedd8290101f9c6b3e6382f192ae177 (diff) | |
Removed the validate management command per deprecation timeline.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/commands/validate.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/django/core/management/commands/validate.py b/django/core/management/commands/validate.py deleted file mode 100644 index 9383746f1f..0000000000 --- a/django/core/management/commands/validate.py +++ /dev/null @@ -1,16 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -import warnings - -from django.core.management.commands.check import Command as CheckCommand -from django.utils.deprecation import RemovedInDjango19Warning - - -class Command(CheckCommand): - help = 'Deprecated. Use "check" command instead. ' + CheckCommand.help - - def handle(self, **options): - warnings.warn('"validate" has been deprecated in favor of "check".', - RemovedInDjango19Warning) - super(Command, self).handle(**options) |
