From aeac690c4ec3c803a60c4f95c315d9387eaf6791 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 4 Feb 2021 09:56:52 +1300 Subject: [PATCH] Allow sub directories in custom stages --- openlp/core/api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/api/main.py b/openlp/core/api/main.py index 0af0fa2aa..89780ad28 100644 --- a/openlp/core/api/main.py +++ b/openlp/core/api/main.py @@ -46,6 +46,6 @@ def stages(path): return send_from_directory(str(AppLocation.get_section_data_path('stages') / path), 'stage.html') -@main_views.route('/stage//') +@main_views.route('/stage//') def stage_assets(path, file): return send_from_directory(str(AppLocation.get_section_data_path('stages') / path), file)