浏览代码

Changed path to new folder name

allens 1 天之前
父节点
当前提交
aa7389a798
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      wsgi.py

+ 1 - 1
wsgi.py

@@ -3,7 +3,7 @@ import os
 import logging
 
 current_dir = os.path.dirname(os.path.abspath(__file__))
-pathtoapp = os.path.join(current_dir, 'checklist')  # Adjust this if your app is in a different folder
+pathtoapp = os.path.join(current_dir, 'Checklist')  # Adjust this if your app is in a different folder
 sys.path.insert(0, pathtoapp)
 
 from app import app as application