1
0
mirror of https://github.com/django/django.git synced 2025-10-26 23:26:08 +00:00

Fixed several typos in Django

This commit is contained in:
Alex Gaynor
2014-05-28 17:39:14 -07:00
parent e79725cdf9
commit 1dcc603eff
34 changed files with 40 additions and 40 deletions

View File

@@ -331,7 +331,7 @@ class BaseCommand(object):
try:
if (self.requires_system_checks and
not options.get('skip_validation') and # This will be removed at the end of deprecation proccess for `skip_validation`.
not options.get('skip_validation') and # This will be removed at the end of deprecation process for `skip_validation`.
not options.get('skip_checks')):
self.check()
output = self.handle(*args, **options)