Make minimal movie automation clearer. fix #1923

This commit is contained in:
Ruud
2013-07-06 23:39:34 +02:00
parent a4a14cae96
commit da9dda2c2b
6 changed files with 7 additions and 6 deletions
@@ -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',
@@ -11,7 +11,7 @@ config = [{
'list': 'automation_providers',
'name': 'itunes_automation',
'label': 'iTunes',
'description': 'From any <a href="http://itunes.apple.com/rss">iTunes</a> Store feed. Url should be the RSS link. (uses minimal requirements)',
'description': 'From any <a href="http://itunes.apple.com/rss">iTunes</a> Store feed. Url should be the RSS link.',
'options': [
{
'name': 'automation_enabled',
@@ -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',
@@ -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',
@@ -21,7 +21,8 @@ config = [{
{
'name': 'tomatometer_percent',
'default': '80',
'label': 'Tomatometer'
'label': 'Tomatometer',
'description': 'Use as extra scoring requirement',
}
],
},
@@ -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