Explorar el Código

Update 'wsgi.py'

Added hooks_path variable from config.
deadtom hace 1 semana
padre
commit
2b9e090d18
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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