diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-07-31 13:28:51 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-07-31 13:28:51 +0000 |
| commit | 9a56fe765e75e99a34cc39c82f282be68544b706 (patch) | |
| tree | 14d4b72ef9c0de3e5741f8343fc497e115dd4908 /tests/regressiontests/admin_scripts | |
| parent | f423dde34aa0e97dd6ae3a79d4b8f7e4991fb0a2 (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.py | 2 |
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') |
