From 3fbfd7592bb0593ad11da9df5a7c357b4ef292e7 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Tue, 6 Nov 2018 22:00:58 +0100 Subject: [PATCH] Fix a traceback when going live with presentation --- openlp/core/lib/serviceitem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index bdbfb7912..4827c1980 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -523,7 +523,7 @@ class ServiceItem(RegistryProperties): if self.is_image() or self.is_capable(ItemCapabilities.IsOptical): path_from = frame['filename'] else: - path_from = os.path.join(frame['filename'], frame['title']) + path_from = os.path.join(frame['path'], frame['title']) return path_from def remove_frame(self, frame):