From 2920ef49138577e93d2df4198bf156ba201d374b Mon Sep 17 00:00:00 2001 From: administrator Date: Sun, 3 May 2020 12:29:41 +0200 Subject: [PATCH] modified: betaseries.py - /watched devient + lisible --- betaseries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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