diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2013-10-21 01:17:52 -0300 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2013-10-21 01:18:44 -0300 |
| commit | a3690168cbde5e7bee16443569ad3dedd2466af7 (patch) | |
| tree | e216d0dd0bdec00ade59714d558a265b6bee354a | |
| parent | 8d6953d55c3aba04bbaf0f268499d6e405c653ff (diff) | |
Fixed an I18N test class tearDown method.
| -rw-r--r-- | tests/i18n/commands/extraction.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/i18n/commands/extraction.py b/tests/i18n/commands/extraction.py index c373d29031..3c3013e701 100644 --- a/tests/i18n/commands/extraction.py +++ b/tests/i18n/commands/extraction.py @@ -342,6 +342,7 @@ class CopyPluralFormsExtractorTests(ExtractorTests): PO_FILE_ES = 'locale/es/LC_MESSAGES/django.po' def tearDown(self): + super(CopyPluralFormsExtractorTests, self).tearDown() os.chdir(self.test_dir) try: self._rmrf('locale/es') |
