From 58f4cda11a9fcca7b6834f1f7512a1c3afc33811 Mon Sep 17 00:00:00 2001 From: manetta Date: Thu, 10 Mar 2022 17:55:52 +0100 Subject: [PATCH] typo --- octomode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octomode.py b/octomode.py index 258be31..1620346 100755 --- a/octomode.py +++ b/octomode.py @@ -37,7 +37,7 @@ class PrefixMiddleware(object): start_response('404', [('Content-Type', 'text/plain')]) return ["This url does not belong to the app.".encode()] -APP.wsgi_app = PrefixMiddleware(app.wsgi_app, prefix=APP.config['APPLICATION_ROOT']) +APP.wsgi_app = PrefixMiddleware(APP.wsgi_app, prefix=APP.config['APPLICATION_ROOT']) # ---