From 5299cc27f559dcb1fb2b299da3e89cd3d5814d47 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 4 Jan 2019 20:50:40 +0000 Subject: [PATCH] pep8 --- openlp/core/lib/pluginmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index d6b882ba3..690bb7f8e 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -170,7 +170,7 @@ class PluginManager(RegistryBase, LogMixin, RegistryProperties): display_text = '' if uninitialised_plugins: display_text = translate('OpenLP.PluginManager', 'Unable to initialise the following plugins:') + \ - '\n\n'.join(uninitialised_plugins) + '\n\n' + '\n\n'.join(uninitialised_plugins) + '\n\n' error_text = State().get_text() if error_text: display_text = display_text + error_text + '\n'