summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-12-21 14:26:42 -0500
committerTim Graham <timograham@gmail.com>2015-12-21 14:26:42 -0500
commitb10f66831ba2fc68901bc674104a76eb112ee52a (patch)
treed3ab4dfa454527238e5faf2c24fe1f4588ac1d47 /django/core
parent5399ccc0f4257676981ef7937ea84be36f7058a6 (diff)
Fixed #25958 -- Removed support for 'skip_validation' in BaseCommand.execute(**options).
Diffstat (limited to 'django/core')
-rw-r--r--django/core/management/base.py4
1 files changed, 1 insertions, 3 deletions
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: