瀏覽代碼

modified: betaseries.py - /watched devient + lisible

master
administrator 8 月之前
父節點
當前提交
2920ef4913
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      betaseries.py

+ 1
- 1
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



Loading…
取消
儲存