diff options
Diffstat (limited to 'setuptools/_distutils/command/check.py')
-rw-r--r-- | setuptools/_distutils/command/check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/_distutils/command/check.py b/setuptools/_distutils/command/check.py index ada25006..525540b6 100644 --- a/setuptools/_distutils/command/check.py +++ b/setuptools/_distutils/command/check.py @@ -17,7 +17,7 @@ try: def __init__(self, source, report_level, halt_level, stream=None, debug=0, encoding='ascii', error_handler='replace'): self.messages = [] - Reporter.__init__(self, source, report_level, halt_level, stream, + super().__init__(source, report_level, halt_level, stream, debug, encoding, error_handler) def system_message(self, level, message, *children, **kwargs): |