Merge pull request #73 from Arduous/master
radiobrowser.py: remove inadequate print statement.
This commit is contained in:
commit
1d65195926
1 changed files with 0 additions and 1 deletions
|
@ -152,7 +152,6 @@ def get_stations_by_votes(limit=DEFAULT_STATION_LIMIT):
|
|||
stations = []
|
||||
stations_json = request('stations?order=votes&reverse=true&limit=' + str(limit))
|
||||
for station_json in stations_json:
|
||||
print(station_json)
|
||||
if SHOW_BROKEN_STATIONS or get_json_attr(station_json, 'lastcheckok') == 1:
|
||||
stations.append(Station(station_json))
|
||||
return stations
|
||||
|
|
Loading…
Reference in a new issue