From 0cc18151706d4f85e47b0171c63a63f51e0adcce Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 27 Sep 2006 02:50:46 +0000 Subject: [PATCH] Fixed Python 2.3 compatibility problem in [3872]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3874 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 4fa40b5807..a5d7186ac9 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -867,7 +867,7 @@ def get_validation_errors(outfile, app=None): if settings.DATABASE_ENGINE == 'mysql': db_version = connection.get_server_version() if db_version < (5, 0, 3) and isinstance(f, (models.CharField, models.CommaSeparatedIntegerField, models.SlugField)) and f.maxlength > 255: - e.add(opts, '"%s": %s cannot have a "maxlength" greater than 255 when you are using a version of MySQL prior to 5.0.3 (you are using %s).' % (f.name, f.__class__.__name__, '.'.join(str(n) for n in db_version[:3]))) + e.add(opts, '"%s": %s cannot have a "maxlength" greater than 255 when you are using a version of MySQL prior to 5.0.3 (you are using %s).' % (f.name, f.__class__.__name__, '.'.join([str(n) for n in db_version[:3]]))) # Check to see if the related field will clash with any # existing fields, m2m fields, m2m related objects or related objects