summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/support.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-14 15:04:39 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-14 15:04:39 (GMT)
commit8022314fc2e8d6a4133c761633ab4e22404319e8 (patch)
treed45bd35cbb6fa3a6c80beaa329af2c049e35b81a /Lib/packaging/tests/support.py
parentd139b994266e0fcc90ac30b49dc9cc047c222961 (diff)
downloadcpython-8022314fc2e8d6a4133c761633ab4e22404319e8.zip
cpython-8022314fc2e8d6a4133c761633ab4e22404319e8.tar.gz
cpython-8022314fc2e8d6a4133c761633ab4e22404319e8.tar.bz2
Cleanup in packaging: super considered super
Diffstat (limited to 'Lib/packaging/tests/support.py')
-rw-r--r--Lib/packaging/tests/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/tests/support.py b/Lib/packaging/tests/support.py
index 33d5966..cfcfe01 100644
--- a/Lib/packaging/tests/support.py
+++ b/Lib/packaging/tests/support.py
@@ -65,7 +65,7 @@ class _TestHandler(logging.handlers.BufferingHandler):
# stolen and adapted from test.support
def __init__(self):
- logging.handlers.BufferingHandler.__init__(self, 0)
+ super(_TestHandler, self).__init__(0)
self.setLevel(logging.DEBUG)
def shouldFlush(self):