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

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