diff --git a/couchpotato/core/media/movie/providers/automation/imdb.py b/couchpotato/core/media/movie/providers/automation/imdb.py
index 0f2e2940..c0c2de88 100644
--- a/couchpotato/core/media/movie/providers/automation/imdb.py
+++ b/couchpotato/core/media/movie/providers/automation/imdb.py
@@ -104,16 +104,19 @@ class IMDBAutomation(IMDBBase):
'theater': 'http://www.imdb.com/movies-in-theaters/',
'top250': 'http://www.imdb.com/chart/top',
'boxoffice': 'http://www.imdb.com/chart/',
+ 'rentals': 'http://www.imdb.com/boxoffice/rentals',
}
chart_names = {
'theater': 'IMDB - Movies in Theaters',
'top250': 'IMDB - Top 250 Movies',
'boxoffice': 'IMDB - Box Office',
+ 'rentals': 'IMDB - Top DVD rentals',
}
chart_order = {
'theater': 2,
- 'top250': 4,
+ 'top250': 5,
'boxoffice': 3,
+ 'rentals': 4,
}
first_table = ['boxoffice']
@@ -240,6 +243,13 @@ config = [{
'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',
@@ -282,6 +292,13 @@ config = [{
'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',