From 9966d8ace7e662f9c2b7cc3687cf75d4ba734fea Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Tue, 11 Jun 2019 21:11:54 +0200 Subject: [PATCH] Missed a rename of _write_theme to save_theme. --- openlp/core/ui/thememanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 46d067970..4a3aa5073 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -173,7 +173,7 @@ class ThemeManager(QtWidgets.QWidget, RegistryBase, Ui_ThemeManager, LogMixin, R for xml_file_path in xml_file_paths: theme_data = get_text_file_string(xml_file_path) theme = self._create_theme_from_xml(theme_data, self.theme_path) - self._write_theme(theme) + self.save_theme(theme) xml_file_path.unlink() def build_theme_path(self):