fixed typo missing self

This commit is contained in:
Rudi Grinberg 2012-11-20 12:11:31 -05:00
parent fed39077c0
commit 58662b42be
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import threading
class UserlessThread(Exception):
def __str__():
def __str__(self):
return "Current thread: %s is not an instance of InstanceThread \
of InstanceInheritingThread" % str(threading.current_thread())