summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-07-31 13:28:51 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-07-31 13:28:51 +0000
commit9a56fe765e75e99a34cc39c82f282be68544b706 (patch)
tree14d4b72ef9c0de3e5741f8343fc497e115dd4908 /tests/regressiontests/admin_scripts
parentf423dde34aa0e97dd6ae3a79d4b8f7e4991fb0a2 (diff)
Corrected a typo in [8158]. Thanks to Matthias Kestenholz <mk@spinlock.ch> for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8161 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_scripts')
-rw-r--r--tests/regressiontests/admin_scripts/tests.py2
1 files changed, 1 insertions, 1 deletions
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')