From 58662b42be4c24161c1f578987cda53f195a62fb Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 20 Nov 2012 12:11:31 -0500 Subject: [PATCH] fixed typo missing self --- python_apps/media-monitor2/media/saas/thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/media-monitor2/media/saas/thread.py b/python_apps/media-monitor2/media/saas/thread.py index 49a3acd6f..523d5cd94 100644 --- a/python_apps/media-monitor2/media/saas/thread.py +++ b/python_apps/media-monitor2/media/saas/thread.py @@ -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())