summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-17 19:00:12 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 19:12:03 -0500
commit0622bca5d1b25877167b7beda96edcd3ba58db8d (patch)
tree32df33bbf2ac65345a65eb4ddbad6f462042c2d1 /django
parent714277cb4cedd8290101f9c6b3e6382f192ae177 (diff)
Removed the validate management command per deprecation timeline.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/validate.py16
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)