Fixed #4372 -- Fixed a small typo in an error message. Thanks, John Shaffer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5355 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
193a83ca50
commit
30d4e9424d
|
@ -1138,7 +1138,7 @@ def validate(outfile=sys.stdout, silent_success=False):
|
|||
return
|
||||
outfile.write('%s error%s found.\n' % (num_errors, num_errors != 1 and 's' or ''))
|
||||
except ImproperlyConfigured:
|
||||
outfile.write("Skipping validation because things aren't configured properly.")
|
||||
outfile.write("Skipping validation because things aren't configured properly.\n")
|
||||
validate.args = ''
|
||||
|
||||
def _check_for_validation_errors(app=None):
|
||||
|
|
Loading…
Reference in New Issue