Convert missing available to True False

This commit is contained in:
samwiseg0 2018-12-10 17:27:50 -08:00
parent 164f919769
commit 18285f1914

View file

@ -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)