Revert "Convert missing available to True False"
This reverts commit 273706d1
This commit is contained in:
parent
18285f1914
commit
4c1c60c152
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue