From 595dea2fd5fe110c7f83f72173c3f6ebaba9e423 Mon Sep 17 00:00:00 2001 From: Samuel Progin Date: Sat, 24 Oct 2020 17:28:38 +0200 Subject: [PATCH] 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 --- ycast/radiobrowser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ycast/radiobrowser.py b/ycast/radiobrowser.py index b220884..6665e21 100644 --- a/ycast/radiobrowser.py +++ b/ycast/radiobrowser.py @@ -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