From: Sebastian Golasch Date: Mon, 27 Feb 2017 13:45:17 +0000 (+0100) Subject: fix(chore): Remove debug output X-Git-Url: http://git.code-monkey.de/?p=plugin.video.netflix.git;a=commitdiff_plain;h=ee9fa36836a82c51e1ce1575be281d30d7767563 fix(chore): Remove debug output --- diff --git a/resources/lib/Navigation.py b/resources/lib/Navigation.py index 01426de..43cdf05 100644 --- a/resources/lib/Navigation.py +++ b/resources/lib/Navigation.py @@ -258,9 +258,6 @@ class Navigation: # sort seasons by index by default (they´re coming back unsorted from the api) seasons_sorted = [] for season_id in season_list: - print '---Le DEBUG--' - print season_list[season_id] - print '---Le DEBUG--' seasons_sorted.append(int(season_list[season_id]['id'])) seasons_sorted.sort() return self.kodi_helper.build_season_listing(seasons_sorted=seasons_sorted, season_list=season_list, build_url=self.build_url)