浏览代码

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



正在加载...
取消
保存