summaryrefslogtreecommitdiff
path: root/django/core/management.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-26 09:48:50 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-26 09:48:50 +0000
commit30d4e9424d6d1719261ef72258feaa2b498c65b0 (patch)
tree9bd43aee7185ba95856ac3456a07d51ab7bbf107 /django/core/management.py
parent193a83ca509acfb3db4694809461a1476f6530bb (diff)
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
Diffstat (limited to 'django/core/management.py')
-rw-r--r--django/core/management.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management.py b/django/core/management.py
index e72f05e314..b763a5cb1c 100644
--- a/django/core/management.py
+++ b/django/core/management.py
@@ -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):