From 9a56fe765e75e99a34cc39c82f282be68544b706 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 31 Jul 2008 13:28:51 +0000 Subject: [PATCH] Corrected a typo in [8158]. Thanks to Matthias Kestenholz for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8161 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/admin_scripts/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/admin_scripts/tests.py b/tests/regressiontests/admin_scripts/tests.py index 9b79c0e6d8..f1b167eec7 100644 --- a/tests/regressiontests/admin_scripts/tests.py +++ b/tests/regressiontests/admin_scripts/tests.py @@ -48,7 +48,7 @@ class AdminScriptTestCase(unittest.TestCase): try: if sys.platform.startswith('java'): # Jython produces module$py.class files - os.remove(re.sub(r'\.py$', '$py.class', fullname)) + os.remove(re.sub(r'\.py$', '$py.class', full_name)) else: # CPython produces module.pyc files os.remove(full_name + 'c')