Author: russellm
Date: 2008-07-13 23:57:01 -0500 (Sun, 13 Jul 2008)
New Revision: 7921
Modified:
django/trunk/tests/regressiontests/admin_scripts/tests.py
Log:
Removed a Python2.3 incompatible generator construct. Thanks to Karen Tracey
for the report.
Modified: django/trunk/tests/regressiontests/admin_scripts/tests.py
===================================================================
--- django/trunk/tests/regressiontests/admin_scripts/tests.py 2008-07-13
17:36:51 UTC (rev 7920)
+++ django/trunk/tests/regressiontests/admin_scripts/tests.py 2008-07-14
04:57:01 UTC (rev 7921)
@@ -53,7 +53,7 @@
# Build the command line
cmd = 'python "%s"' % script
- cmd += ''.join(' %s' % arg for arg in args)
+ cmd += ''.join([' %s' % arg for arg in args])
# Remember the old environment
old_django_settings_module = os.environ.get('DJANGO_SETTINGS_MODULE',
None)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---