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)