Install location changed

This commit is contained in:
Edward Betts 2024-09-23 09:21:08 +01:00
parent 4b449d0d98
commit 197f6e5bfd

View file

@ -1,8 +1,8 @@
#!/usr/bin/python3 #!/usr/bin/python3
from flipflop import WSGIServer from flipflop import WSGIServer
import sys import sys
sys.path.append('/home/edward/src/2021/agenda') sys.path.append('/home/edward/src/agenda') # isort:skip
from web_view import app from web_view import app # isort:skip
if __name__ == '__main__': if __name__ == '__main__':
WSGIServer(app).run() WSGIServer(app).run()