From 197f6e5bfd2172c39adba669510db362a57bf55c Mon Sep 17 00:00:00 2001
From: Edward Betts <edward@4angle.com>
Date: Mon, 23 Sep 2024 09:21:08 +0100
Subject: [PATCH] Install location changed

---
 run.fcgi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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