From 131e0213e2c93b938a539491e18fca2bf76b1866 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Thu, 21 Sep 2017 08:40:41 +0100 Subject: [PATCH] minor fix --- openlp/plugins/presentations/lib/mediaitem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index d9a14e0ed..8061bb193 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -331,7 +331,7 @@ class PresentationMediaItem(MediaManagerItem): file_path = str_to_path(bitem.data(QtCore.Qt.UserRole)) path, file_name = file_path.parent, file_path.name service_item.title = file_name - if file_path.exists: + if file_path.exists(): if self.display_type_combo_box.itemData(self.display_type_combo_box.currentIndex()) == 'automatic': service_item.processor = self.find_controller_by_type(file_path) if not service_item.processor: