aboutsummaryrefslogtreecommitdiff
path: root/backend/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/server.py')
-rwxr-xr-xbackend/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/server.py b/backend/server.py
index 5b0d26b..5b4d050 100755
--- a/backend/server.py
+++ b/backend/server.py
@@ -18,7 +18,7 @@ def wrappingApp(environ: dict[str, str], start_response) -> Iterable[bytes]:
if urlPath.startswith('/data/'):
# Run WSGI script
return application(environ, start_response)
- elif urlPath.startswith('/tolData/img/'):
+ elif urlPath.startswith('/tol_data/img/'):
# Serve image file
imgPath = os.path.join(os.getcwd(), urlPath[1:])
if os.path.exists(imgPath):