Convert missing available to True False

This commit is contained in:
samwiseg0 2018-12-10 17:27:50 -08:00 committed by Nicholas St. Germain
parent 387202d2a9
commit 51d03126f8

View file

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