diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-05-29 10:04:06 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-05-29 10:04:06 (GMT) |
commit | ba130b825d5634560ab4d3aeb53873040ed019f1 (patch) | |
tree | 765585ebcb555ec00ef63ea483dc03917de29e73 /Lib/distutils | |
parent | aa0c6ab14cc93026d70d941671174c6ac5e4c341 (diff) | |
download | cpython-ba130b825d5634560ab4d3aeb53873040ed019f1.zip cpython-ba130b825d5634560ab4d3aeb53873040ed019f1.tar.gz cpython-ba130b825d5634560ab4d3aeb53873040ed019f1.tar.bz2 |
using super in distutils' sdistTestCase
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_sdist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py index 0d839b5..59c24fd 100644 --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -29,14 +29,14 @@ recursive-include somecode * class sdistTestCase(PyPIRCCommandTestCase): def setUp(self): - PyPIRCCommandTestCase.setUp(self) + super(sdistTestCase, self).setUp() self.old_path = os.getcwd() def tearDown(self): os.chdir(self.old_path) if os.path.exists(TEMP_PKG): shutil.rmtree(TEMP_PKG) - PyPIRCCommandTestCase.tearDown(self) + super(sdistTestCase, self).tearDown() def _init_tmp_pkg(self): if os.path.exists(TEMP_PKG): |