diff --git a/python-stdlib/logging/logging.py b/python-stdlib/logging/logging.py index d17e42c4..f4874df7 100644 --- a/python-stdlib/logging/logging.py +++ b/python-stdlib/logging/logging.py @@ -58,6 +58,7 @@ class Handler: class StreamHandler(Handler): def __init__(self, stream=None): + super().__init__() self.stream = _stream if stream is None else stream self.terminator = "\n" diff --git a/python-stdlib/logging/manifest.py b/python-stdlib/logging/manifest.py index daf5d9c9..d9f0ee88 100644 --- a/python-stdlib/logging/manifest.py +++ b/python-stdlib/logging/manifest.py @@ -1,3 +1,3 @@ -metadata(version="0.6.0") +metadata(version="0.6.1") module("logging.py")