From 14439e053affc4c5df213c20d275550ce6918b4c Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 8 Oct 2009 20:35:24 +0100 Subject: [PATCH] Fix song issue bzr-revno: 590 --- openlp/plugins/songs/songsplugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 9c9e4f1ad..8d78231ee 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -51,7 +51,7 @@ class SongsPlugin(Plugin): # Call the parent constructor Plugin.__init__(self, u'Songs', u'1.9.0', plugin_helpers) self.weight = -10 - self.songmanager = None + self.songmanager = SongManager(self.config) self.openlp_import_form = OpenLPImportForm() self.opensong_import_form = OpenSongImportForm() self.openlp_export_form = OpenLPExportForm() @@ -64,8 +64,8 @@ class SongsPlugin(Plugin): def initialise(self): log.info(u'Songs Initialising') - if self.songmanager is None: - self.songmanager = SongManager(self.config) + #if self.songmanager is None: + # self.songmanager = SongManager(self.config) Plugin.initialise(self) self.insert_toolbox_item() self.ImportSongMenu.menuAction().setVisible(True)