From eb7f2789f8e2c9214f0004426270ea8a2589d3e4 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 19 Dec 2010 02:01:01 +0000 Subject: [PATCH] [1.2.X] Fixed a Python 2.5 syntax error. Backport of [14983]. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14984 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/localflavor/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/forms/localflavor/utils.py b/tests/regressiontests/forms/localflavor/utils.py index d04c42323e..a10258f24f 100644 --- a/tests/regressiontests/forms/localflavor/utils.py +++ b/tests/regressiontests/forms/localflavor/utils.py @@ -20,7 +20,7 @@ class LocalFlavorTestCase(TestCase): emptyvalue: the expected clean output for inputs in EMPTY_VALUES """ required = fieldclass(*field_args, **field_kwargs) - optional = fieldclass(*field_args, required=False, **field_kwargs) + optional = fieldclass(*field_args, **dict(field_kwargs, required=False)) # test valid inputs for input, output in valid.items(): self.assertEqual(required.clean(input), output)