From 2783405a34e728324775f0dea46a3df111f1fbd8 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 13 Aug 2017 06:28:25 +0100 Subject: [PATCH] More test fixes --- openlp/core/api/http/endpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/api/http/endpoint.py b/openlp/core/api/http/endpoint.py index 6bfac593b..c20f1cb01 100644 --- a/openlp/core/api/http/endpoint.py +++ b/openlp/core/api/http/endpoint.py @@ -68,7 +68,7 @@ class Endpoint(object): """ Render a mako template """ - root = os.path.join(AppLocation.get_section_data_path('remotes')) + root = os.path.join(str(AppLocation.get_section_data_path('remotes'))) if not self.template_dir: raise Exception('No template directory specified') path = os.path.join(root, self.template_dir, filename)