|
|
|
@@ -206,7 +206,7 @@ def get_episode_code(thetvdb_id): |
|
|
|
def get_ep_code_series(fichier): |
|
|
|
with open(fichier) as json_file: |
|
|
|
data = json.load(json_file) |
|
|
|
name = data['title'] + ' | ' + 'S' + str(data['season']) + 'E' + str(data['episode']) |
|
|
|
name = 'S' + str(data['season']) + 'E' + str(data['episode']) + ' ' + data['title'] |
|
|
|
|
|
|
|
return name |
|
|
|
|
|
|
|
|