diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-18 14:49:51 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-18 14:49:51 -0500 |
| commit | 0f169098efd099fd7ae13bd8e14b798530d74da7 (patch) | |
| tree | 9314c1b68f067c5ef20edc9d180f6ce46af6c45f /django | |
| parent | 67a76500a56d6dbe970126e142e02254dad7dbf3 (diff) | |
Removed BaseCommand.validate() per deprecation timeline; refs #16905.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/base.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py index eca2f61264..51a2aed11f 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -414,16 +414,6 @@ class BaseCommand(object): if saved_locale is not None: translation.activate(saved_locale) - def validate(self, app_config=None, display_num_errors=False): - """ Deprecated. Delegates to ``check``.""" - - if app_config is None: - app_configs = None - else: - app_configs = [app_config] - - return self.check(app_configs=app_configs, display_num_errors=display_num_errors) - def check(self, app_configs=None, tags=None, display_num_errors=False, include_deployment_checks=False): """ |
