diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-18 18:01:43 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-18 18:01:43 (GMT) |
commit | a9b2222de40ed62e6ec1c79f6a89607913f4babd (patch) | |
tree | a0555b78f80a1f5027ee3d198bac6326273be834 /Lib/logging/__init__.py | |
parent | cbae8697599b690effd91be411fe4891ff8b52ad (diff) | |
download | cpython-a9b2222de40ed62e6ec1c79f6a89607913f4babd.zip cpython-a9b2222de40ed62e6ec1c79f6a89607913f4babd.tar.gz cpython-a9b2222de40ed62e6ec1c79f6a89607913f4babd.tar.bz2 |
change a few uses of the threading APIs
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 9b91b9c..ae001db 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -262,7 +262,7 @@ class LogRecord: self.relativeCreated = (self.created - _startTime) * 1000 if logThreads and thread: self.thread = thread.get_ident() - self.threadName = threading.current_thread().get_name() + self.threadName = threading.current_thread().name else: self.thread = None self.threadName = None |