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:
parent
f423dde34a
commit
9a56fe765e
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue