From 61baf982f4618f40e1478c3cf3c993d3a593b782 Mon Sep 17 00:00:00 2001 From: Paul Lamere Date: Mon, 7 Jul 2014 17:40:52 +0200 Subject: [PATCH] Removed debug output --- examples/show_related.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/show_related.py b/examples/show_related.py index 4818877..ce96e42 100644 --- a/examples/show_related.py +++ b/examples/show_related.py @@ -17,10 +17,9 @@ try: uri = result['artists']['items'][0]['uri'] related = sp.artist_related_artists(uri) - print 'related artists for', name + print 'Related artists for', name for artist in related['artists']: print ' ', artist['name'] except: - raise print "usage show_related.py [artist-name]"