-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API returns unexpected None for actors #73
Comments
Strangely I just get a show-not-found error with
|
Not too sure why your code didn't throw the tvdb_error exception and instead continues - this should be handled in the |
Ahh, the NoneType error was fixed as part of the changes in tvdb_api 3.0 So the problem is just |
I'm using version 2.0, maybe that explains it?
I haven't tried 3.0 yet due to the API key requirement.
|
Yep - 2.0 vs 3.0 explains the slightly different error produced, but either way it's caused by a problem with the API response from TheTVDB |
It would still be prudent to work around this exception in Maybe something like this: fd61946 |
Summarised this in #85 - shall close this as there's a few duplicates and it's a bit hard to keep track. Thanks all! |
This should be easy to fix by wrapping the for loop at line 1057 in a
if isinstance(actorsEt, abc.Iterable)
.The text was updated successfully, but these errors were encountered: