Revert "Convert missing available to True False"

This reverts commit 273706d1
This commit is contained in:
Nicholas St. Germain 2018-12-10 19:55:45 -06:00
parent 51d03126f8
commit 5812a2d4c1

View file

@ -40,9 +40,9 @@ class RadarrAPI(object):
for movie in movies:
if not movie.downloaded:
if movie.isAvailable:
ma = True
ma = 0
else:
ma = False
ma = 1
movie_name = '{} ({})'.format(movie.title, movie.year)