diff --git a/couchpotato/core/providers/automation/bluray/__init__.py b/couchpotato/core/providers/automation/bluray/__init__.py
index b916b0af..e0675247 100644
--- a/couchpotato/core/providers/automation/bluray/__init__.py
+++ b/couchpotato/core/providers/automation/bluray/__init__.py
@@ -11,7 +11,7 @@ config = [{
'list': 'automation_providers',
'name': 'bluray_automation',
'label': 'Blu-ray.com',
- 'description': 'Imports movies from blu-ray.com. (uses minimal requirements)',
+ 'description': 'Imports movies from blu-ray.com.',
'options': [
{
'name': 'automation_enabled',
diff --git a/couchpotato/core/providers/automation/itunes/__init__.py b/couchpotato/core/providers/automation/itunes/__init__.py
index b5c565f6..cc5dddc7 100644
--- a/couchpotato/core/providers/automation/itunes/__init__.py
+++ b/couchpotato/core/providers/automation/itunes/__init__.py
@@ -11,7 +11,7 @@ config = [{
'list': 'automation_providers',
'name': 'itunes_automation',
'label': 'iTunes',
- 'description': 'From any iTunes Store feed. Url should be the RSS link. (uses minimal requirements)',
+ 'description': 'From any iTunes Store feed. Url should be the RSS link.',
'options': [
{
'name': 'automation_enabled',
diff --git a/couchpotato/core/providers/automation/kinepolis/__init__.py b/couchpotato/core/providers/automation/kinepolis/__init__.py
index d3b8e898..24bd4ebb 100644
--- a/couchpotato/core/providers/automation/kinepolis/__init__.py
+++ b/couchpotato/core/providers/automation/kinepolis/__init__.py
@@ -11,7 +11,7 @@ config = [{
'list': 'automation_providers',
'name': 'kinepolis_automation',
'label': 'Kinepolis',
- 'description': 'Imports movies from the current top 10 of kinepolis. (uses minimal requirements)',
+ 'description': 'Imports movies from the current top 10 of kinepolis.',
'options': [
{
'name': 'automation_enabled',
diff --git a/couchpotato/core/providers/automation/moviemeter/__init__.py b/couchpotato/core/providers/automation/moviemeter/__init__.py
index 773bed45..aff5d09d 100644
--- a/couchpotato/core/providers/automation/moviemeter/__init__.py
+++ b/couchpotato/core/providers/automation/moviemeter/__init__.py
@@ -11,7 +11,7 @@ config = [{
'list': 'automation_providers',
'name': 'moviemeter_automation',
'label': 'Moviemeter',
- 'description': 'Imports movies from the current top 10 of moviemeter.nl. (uses minimal requirements)',
+ 'description': 'Imports movies from the current top 10 of moviemeter.nl.',
'options': [
{
'name': 'automation_enabled',
diff --git a/couchpotato/core/providers/automation/rottentomatoes/__init__.py b/couchpotato/core/providers/automation/rottentomatoes/__init__.py
index dd96fe45..83a545b6 100644
--- a/couchpotato/core/providers/automation/rottentomatoes/__init__.py
+++ b/couchpotato/core/providers/automation/rottentomatoes/__init__.py
@@ -21,7 +21,8 @@ config = [{
{
'name': 'tomatometer_percent',
'default': '80',
- 'label': 'Tomatometer'
+ 'label': 'Tomatometer',
+ 'description': 'Use as extra scoring requirement',
}
],
},
diff --git a/couchpotato/core/providers/automation/rottentomatoes/main.py b/couchpotato/core/providers/automation/rottentomatoes/main.py
index b4482023..9842d4c9 100644
--- a/couchpotato/core/providers/automation/rottentomatoes/main.py
+++ b/couchpotato/core/providers/automation/rottentomatoes/main.py
@@ -42,7 +42,7 @@ class Rottentomatoes(Automation, RSS):
year = datetime.datetime.now().strftime("%Y")
imdb = self.search(name, year)
- if imdb:
+ if imdb and self.isMinimalMovie(imdb):
movies.append(imdb['imdb'])
return movies