From 17da8ff8826c82333c20862364c6278cc58a84b9 Mon Sep 17 00:00:00 2001 From: razorloves Date: Wed, 27 Jan 2016 23:21:40 -0600 Subject: [PATCH] remove defunct imdb dvd rental chart The IMDB dvd rental chart no longer exists. They removed it from their site about a months ago. The dvd rental link now just redirects to the box office link, resulting in couchpotato showing the same movies in both charts. https://getsatisfaction.com/imdb/topics/where-did-the-top-dvd-weekly-rental-charts-go --- .../media/movie/providers/automation/imdb.py | 22 +------------------ 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/couchpotato/core/media/movie/providers/automation/imdb.py b/couchpotato/core/media/movie/providers/automation/imdb.py index 61bbe55366..41974c44a1 100644 --- a/couchpotato/core/media/movie/providers/automation/imdb.py +++ b/couchpotato/core/media/movie/providers/automation/imdb.py @@ -37,14 +37,8 @@ class IMDBBase(Automation, RSS): 'name': 'IMDB - Box Office', 'url': 'http://www.imdb.com/boxoffice/', }, - 'rentals': { - 'order': 3, - 'name': 'IMDB - Top DVD rentals', - 'url': 'http://www.imdb.com/boxoffice/rentals', - 'type': 'json', - }, 'top250': { - 'order': 4, + 'order': 3, 'name': 'IMDB - Top 250 Movies', 'url': 'http://www.imdb.com/chart/top', }, @@ -269,13 +263,6 @@ def getChartList(self): 'description': 'New Movies In-Theaters chart', 'default': True, }, - { - 'name': 'automation_charts_rentals', - 'type': 'bool', - 'label': 'DVD Rentals', - 'description': 'Top DVD rentals chart', - 'default': True, - }, { 'name': 'automation_charts_top250', 'type': 'bool', @@ -318,13 +305,6 @@ def getChartList(self): 'description': 'IMDB TOP 250 chart', 'default': False, }, - { - 'name': 'chart_display_rentals', - 'type': 'bool', - 'label': 'DVD Rentals', - 'description': 'Top DVD rentals chart', - 'default': True, - }, { 'name': 'chart_display_boxoffice', 'type': 'bool',