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()