瀏覽代碼

reordered list

Karl Hudgell 9 月之前
父節點
當前提交
94e9923d0c
共有 2 個文件被更改,包括 1 次插入1 次删除
  1. 0 0
      feed.xml
  2. 1 1
      generator.py

文件差異過大導致無法顯示
+ 0 - 0
feed.xml


+ 1 - 1
generator.py

@@ -67,7 +67,7 @@ def add_episodes_from_folder(folder_path: str, season:int) -> None:
         season (int): Season number for for the podcast
     """
     file_list = os.listdir(folder_path)
-    list_of_episodes = [x for x in file_list if "mp3" in x]
+    list_of_episodes = sorted([x for x in file_list if "mp3" in x], key=lambda x: int(x.split()[1].split('.')[0]))
     # file_list.pop(0)
     for file in list_of_episodes:
         filename = file[:-4]

部分文件因文件數量過多而無法顯示