From 6f2e9e763859347cff1597f5058dec2171b6f9a0 Mon Sep 17 00:00:00 2001 From: elpatron68 Date: Sat, 27 Jul 2019 19:07:31 +0200 Subject: [PATCH] Remove url in station --- radiobrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiobrowser.py b/radiobrowser.py index c52010c..2318cbe 100644 --- a/radiobrowser.py +++ b/radiobrowser.py @@ -8,7 +8,7 @@ def getstations_byname(query): for st in results: try: # url = rb.playable_station(st['id'])['url'] - station = {'stationname': st['name'], 'url': url, 'id':st['id']} + station = {'stationname': st['name'], 'id':st['id']} stations.append(station) except: pass