From a818e7a9e655af451014bc269e1713eaef6732bd Mon Sep 17 00:00:00 2001 From: Abhinav Sarkar Date: Tue, 31 Mar 2009 15:53:23 +0000 Subject: [PATCH] commented out the print statements --- lastfm/objectcache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lastfm/objectcache.py b/lastfm/objectcache.py index bb10542..dafd448 100644 --- a/lastfm/objectcache.py +++ b/lastfm/objectcache.py @@ -30,10 +30,10 @@ class ObjectCache(object): _registry[cls_name] = WeakValueDictionary() if key in _registry[cls_name]: ob = _registry[cls_name][key] - print "already registered: %s" % repr(ob) + #print "already registered: %s" % repr(ob) return (ob, True) else: - print "not already registered: %s" % ob.__class__ + #print "not already registered: %s" % ob.__class__ _registry[cls_name][key] = ob return (ob, False)