We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e8c7c commit 63f4223Copy full SHA for 63f4223
1 file changed
tvdb_api.py
@@ -1028,7 +1028,11 @@ def _parseActors(self, sid):
1028
data from the XML)
1029
"""
1030
LOG.debug("Getting actors for %s" % (sid))
1031
- actors_resp = self._getetsrc(self.config['url_actorsInfo'] % (sid))
+ try:
1032
+ actors_resp = self._getetsrc(self.config['url_actorsInfo'] % (sid))
1033
+ except tvdb_error:
1034
+ actors_resp = []
1035
+
1036
1037
cur_actors = Actors()
1038
for cur_actor_item in actors_resp:
0 commit comments