changed compat_str to str

This commit is contained in:
AndroKev 2018-03-13 10:06:00 +01:00
parent 944ccd828b
commit 1790c32d6f

View File

@ -178,7 +178,7 @@ class TVNowListIE(TVNowBaseIE):
if not seo_url:
continue
entries.append(self.url_result(
base_url + seo_url + '/player', 'TVNow', compat_str(info.get('id'))))
base_url + seo_url + '/player', 'TVNow', str(info.get('id'))))
return self.playlist_result(
entries, compat_str(season.get('id') or season_id), title)