diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index d09043e54..9c792a08b 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -151,7 +151,7 @@ class Plugin(QtCore.QObject): QtCore.QObject.__init__(self) self.name = name # TODO: Should we overwrite the plugins status so that third party plugins cannot be enabled by default? - Settings.extendDefaultSettings(default_settings) + Settings.extend_default_settings(default_settings) self.textStrings = {} self.setPluginTextStrings() self.nameStrings = self.textStrings[StringContent.Name] diff --git a/openlp/core/lib/settings.py b/openlp/core/lib/settings.py index 1dee72d65..14b558494 100644 --- a/openlp/core/lib/settings.py +++ b/openlp/core/lib/settings.py @@ -204,7 +204,7 @@ class Settings(QtCore.QSettings): } @staticmethod - def extendDefaultSettings(defaultValues): + def extend_default_settings(defaultValues): """ Static method to merge the given ``defaultValues`` with the ``Settings.__default_settings__``.