Fix for Newznab providers

This commit is contained in:
echel0n 2014-04-25 21:53:44 -07:00
parent 6c9fb4b0bd
commit 26e259c036
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class NewznabProvider(generic.NZBProvider):
status = data.status
if status:
if status == 200:
if status in [200, 301]:
return True
if status == 100:
raise AuthException("Your API key for " + self.name + " is incorrect, check your config.")