소스 검색

Update 'wsgi.py'

Added hooks_path variable from config.
deadtom 1 주 전
부모
커밋
2b9e090d18
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      wsgi.py

+ 2 - 1
wsgi.py

@@ -1,5 +1,6 @@
 import sys
+import config
 
-sys.path.insert(0, "~/owncasthooks")
+sys.path.insert(0, config.hooks_path)
 
 from hooks import app as application