Skip to content

Commit

Permalink
Convert missing available to True False
Browse files Browse the repository at this point in the history
  • Loading branch information
samwiseg0 committed Dec 11, 2018
1 parent e7705d7 commit 273706d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions varken/radarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def get_missing(self):
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)

Expand Down

0 comments on commit 273706d

Please sign in to comment.