remove un-needed check.

This commit is contained in:
clinton-hall 2014-11-03 14:44:34 +10:30
commit 9b32b2bdcb

View file

@ -284,9 +284,8 @@ class autoProcessTV:
elif section == "NzbDrone":
try:
res = json.loads(r.content)
if res["message"] == "Starting":
scan_id = int(res['id'])
Started = True
scan_id = int(res['id'])
Started = True
except:
scan_id = None
Started = False