Fix last traces of old threading API.

This commit is contained in:
Georg Brandl 2008-06-13 06:32:25 +00:00
parent 7634ff5ad6
commit f992640ed3
7 changed files with 25 additions and 25 deletions

View file

@ -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__)