Removed a Python2.3 incompatible generator construct. Thanks to Karen Tracey for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7921 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b4cc77c73d
commit
e867c5a0cc
|
@ -53,7 +53,7 @@ class AdminScriptTestCase(unittest.TestCase):
|
|||
|
||||
# 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)
|
||||
|
|
Loading…
Reference in New Issue