From 2dbd56795e213365dd241b7376bb2dc7d6665ebb Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 17 Feb 2006 20:16:42 +0000 Subject: [PATCH] magic-removal: Changed error message in model validator to use American spelling for 'initialized' git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2330 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management.py b/django/core/management.py index 079674e6f5..1bbe8d7444 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -845,7 +845,7 @@ def get_validation_errors(outfile, app=None): # Check for deprecated args dep_args = getattr(f, 'deprecated_args', None) if dep_args: - e.add(opts, "'%s' Initialised with deprecated args:%s" % (f.name, ",".join(dep_args))) + e.add(opts, "'%s' Initialized with deprecated args:%s" % (f.name, ",".join(dep_args))) if isinstance(f, models.CharField) and f.maxlength in (None, 0): e.add(opts, '"%s": CharFields require a "maxlength" attribute.' % f.name) if isinstance(f, models.FloatField):