From 0622bca5d1b25877167b7beda96edcd3ba58db8d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 17 Jan 2015 19:00:12 -0500 Subject: Removed the validate management command per deprecation timeline. --- django/core/management/commands/validate.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 django/core/management/commands/validate.py (limited to 'django') 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) -- cgit v1.3