summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-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: