Clean up. Add year to movies
This commit is contained in:
parent
0f1ed7f234
commit
1db7666c37
2 changed files with 8 additions and 5 deletions
|
@ -32,7 +32,8 @@ def get_missing_movies():
|
|||
|
||||
for movie in movies.keys():
|
||||
if not movies[movie]['downloaded']:
|
||||
missing.append((movies[movie]['title'], movies[movie]['tmdbId']))
|
||||
movie_name = ('{} ({})'.format(movies[movie]['title'], movies[movie]['year']))
|
||||
missing.append((movie_name, movies[movie]['tmdbId']))
|
||||
|
||||
for movie, id in missing:
|
||||
influx_payload.append(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue