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
This commit is contained in:
Russell Keith-Magee 2008-07-31 13:28:51 +00:00
parent f423dde34a
commit 9a56fe765e
1 changed files with 1 additions and 1 deletions

View File

@ -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')