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": elif section == "NzbDrone":
try: try:
res = json.loads(r.content) res = json.loads(r.content)
if res["message"] == "Starting": scan_id = int(res['id'])
scan_id = int(res['id']) Started = True
Started = True
except: except:
scan_id = None scan_id = None
Started = False Started = False