Private GIT

Skip to content
Snippets Groups Projects
Commit f97fe3f4 authored by GaetanCambier's avatar GaetanCambier
Browse files

Update ftdb.py

correction of :
TypeError: cannot concatenate 'str' and 'int' objects
parent 3184b84c
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class FTDBProvider(generic.TorrentProvider):
showNames = list(set(showNam))
results = []
for showName in showNames:
results.append( self.getSearchParams(showName, show.audio_lang, 'series' ) + "&season=" + season)
results.append( self.getSearchParams(showName, show.audio_lang, 'series' ) + "&season=" + str(season))
return results
def _get_episode_search_strings(self, ep_obj, french=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment