IMDB automation crashed on second watchlist. fix #322

This commit is contained in:
Ruud
2012-05-25 20:18:03 +02:00
parent 84eecaac61
commit bc47b5fad5
3 changed files with 15 additions and 1 deletions
@@ -23,7 +23,14 @@ class IMDB(Automation):
movies = []
headers = {}
enablers = self.conf('automation_urls_use').split(',')
index = -1
for csv_url in self.conf('automation_urls').split(','):
index += 1
if not enablers[index]:
continue
prop_name = 'automation.imdb.last_update.%s' % md5(csv_url)
last_update = float(Env.prop(prop_name, default = 0))
@@ -36,6 +43,8 @@ class IMDB(Automation):
for column in csv_reader.next():
headers[column] = nr
nr += 1
else:
csv_reader.next()
for row in csv_reader:
created = int(time.mktime(parse(row[headers['created']]).timetuple()))
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

+6 -1
View File
@@ -587,4 +587,9 @@
.group_userscript .bookmarklet span {
margin-left: 10px;
display: inline-block;
}
}
.active .group_imdb_automation:not(.disabled) {
background: url('../../images/imdb_watchlist.png') no-repeat right 50px;
min-height: 210px;
}