فهرست منبع

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