Skip to content

Commit 1f0cb72

Browse files
- All tests pass.
1 parent 19f839a commit 1f0cb72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/python/flask/aws/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def generic_handler(request: Request):
225225
if "template" not in route_cfg:
226226
logger.error(f"Missing template for route: {request}")
227227
return jsonify({'error': f'Missing template for route: {request}'}), 500
228-
logger.info(f"routing to template: {route_cfg["template"]}")
228+
logger.info(f"routing to template: {route_cfg['template']}")
229229
response = make_response(render_template(route_cfg["template"], request=request))
230230
response.headers.update(route_cfg.get("response_headers", {}))
231231
response.status_code = route_cfg.get("status", 200)

0 commit comments

Comments
 (0)