Convert missing available to True False
This commit is contained in:
parent
164f919769
commit
18285f1914
1 changed files with 2 additions and 2 deletions
|
@ -40,9 +40,9 @@ class RadarrAPI(object):
|
||||||
for movie in movies:
|
for movie in movies:
|
||||||
if not movie.downloaded:
|
if not movie.downloaded:
|
||||||
if movie.isAvailable:
|
if movie.isAvailable:
|
||||||
ma = 0
|
ma = True
|
||||||
else:
|
else:
|
||||||
ma = 1
|
ma = False
|
||||||
|
|
||||||
movie_name = '{} ({})'.format(movie.title, movie.year)
|
movie_name = '{} ({})'.format(movie.title, movie.year)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue