Fix error message for invalid EasyWorship 6 database directories.

The old one was copied from the EasyWorship 2009 database importer.
This commit is contained in:
Gary Talent 2017-03-31 23:41:01 -05:00
parent e07693c95f
commit 2cbf1422d1
1 changed files with 2 additions and 2 deletions

View File

@ -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)