diff options
Diffstat (limited to 'Lib/logging/__init__.py')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index f4c552d..cf4d782 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -1162,7 +1162,7 @@ def basicConfig(**kwargs): root.addHandler(hdlr) level = kwargs.get("level") if level: - root.setLevel(level) + root.setLevel(level) #--------------------------------------------------------------------------- # Utility functions at module level. |