From f992640ed39d2865920237a3454bdffb117fe6bc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 13 Jun 2008 06:32:25 +0000 Subject: Fix last traces of old threading API. --- Lib/idlelib/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/rpc.py') diff --git a/Lib/idlelib/rpc.py b/Lib/idlelib/rpc.py index a749353aec..d4af81da46 100644 --- a/Lib/idlelib/rpc.py +++ b/Lib/idlelib/rpc.py @@ -149,7 +149,7 @@ class SocketIO(object): def debug(self, *args): if not self.debugging: return - s = self.location + " " + str(threading.current_thread().getName()) + s = self.location + " " + str(threading.current_thread().get_name()) for a in args: s = s + " " + str(a) print(s, file=sys.__stderr__) -- cgit v1.2.1