summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index bea290e..7dacddb 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1095,7 +1095,7 @@ class Manager(object):
"""
rv = None
if not isinstance(name, str):
- raise ValueError('A logger name must be a string')
+ raise TypeError('A logger name must be a string')
_acquireLock()
try:
if name in self.loggerDict: