Commit e867c5a0 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

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
parent b4cc77c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)