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:
Samuel Progin 2020-10-24 17:28:38 +02:00 committed by GitHub
parent e01d0af1a7
commit 595dea2fd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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