From 7b28262987cba49f8df85985e9e1db2e7a39670d Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 6 Jan 2018 21:36:17 -0700 Subject: [PATCH] Fix a mismatch of arguments in a call to reload_bibles() --- openlp/core/ui/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 0841bfa1d..79d354a90 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -728,7 +728,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, RegistryProperties): # Update the theme widget self.theme_manager_contents.load_themes() # Check if any Bibles downloaded. If there are, they will be processed. - Registry().execute('bibles_load_list', True) + Registry().execute('bibles_load_list') self.application.set_normal_cursor() def is_display_blank(self):