From 3b6d8c622154270606a4282f8ae62947aa3a45e0 Mon Sep 17 00:00:00 2001 From: Keiran Price Date: Thu, 12 Sep 2019 14:23:17 +0100 Subject: [PATCH] #59: Handle trailing slashses --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index 75e9c20f..d8b8b694 100644 --- a/src/main.py +++ b/src/main.py @@ -49,6 +49,7 @@ swagger_gen.write_swagger_spec() app = Flask(__name__) +app.url_map.strict_slashes = False api = Api(app) setup_logger()