diff --git a/betaseries.py b/betaseries.py index 8bb24fc..4a16e29 100644 --- a/betaseries.py +++ b/betaseries.py @@ -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