From b10f66831ba2fc68901bc674104a76eb112ee52a Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 21 Dec 2015 14:26:42 -0500 Subject: Fixed #25958 -- Removed support for 'skip_validation' in BaseCommand.execute(**options). --- django/core/management/base.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'django') diff --git a/django/core/management/base.py b/django/core/management/base.py index b2c5815516..0d71e0f3d4 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -334,9 +334,7 @@ class BaseCommand(object): translation.deactivate_all() try: - if (self.requires_system_checks and - not options.get('skip_validation') and # Remove at the end of deprecation for `skip_validation`. - not options.get('skip_checks')): + if self.requires_system_checks and not options.get('skip_checks'): self.check() output = self.handle(*args, **options) if output: -- cgit v1.3