From 2cbf1422d1ac178d1f9997fda6326c4edc3081ee Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 31 Mar 2017 23:41:01 -0500 Subject: [PATCH] Fix error message for invalid EasyWorship 6 database directories. The old one was copied from the EasyWorship 2009 database importer. --- openlp/plugins/songs/lib/importers/easyworship.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/songs/lib/importers/easyworship.py b/openlp/plugins/songs/lib/importers/easyworship.py index fd1b4604e..5c9b9abba 100644 --- a/openlp/plugins/songs/lib/importers/easyworship.py +++ b/openlp/plugins/songs/lib/importers/easyworship.py @@ -371,8 +371,8 @@ class EasyWorshipSongImport(SongImport): return if not os.path.isfile(song_words_db_path): self.log_error(song_words_db_path, translate('SongsPlugin.EasyWorshipSongImport', - 'Could not find the "Songs.MB" file. It must be in the same ' - 'folder as the "Songs.DB" file.')) + 'This does not appear to be a Easy Worship 6 database ' + 'directory.')) return # get database handles songs_conn = sqlite3.connect(songs_db_path)