radiobrowser.py: remove inadequate print statement.
The print statement is removed as: - It is not present in other very similar methods - It clutters the log
This commit is contained in:
parent
e01d0af1a7
commit
595dea2fd5
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