From fa282cd103b81920b1268f8f04fabeef50aec027 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Tue, 29 Mar 2016 22:45:57 +0200 Subject: [PATCH] pep8 fix --- openlp/plugins/songs/lib/importers/wordsofworship.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/lib/importers/wordsofworship.py b/openlp/plugins/songs/lib/importers/wordsofworship.py index 4c718162a..6135ae2b8 100644 --- a/openlp/plugins/songs/lib/importers/wordsofworship.py +++ b/openlp/plugins/songs/lib/importers/wordsofworship.py @@ -117,9 +117,9 @@ class WordsOfWorshipImport(SongImport): song_data.seek(66) if song_data.read(16).decode() != 'CSongDoc::CBlock': self.log_error(source, - translate('SongsPlugin.WordsofWorshipSongImport', - 'Invalid Words of Worship song file. Missing "%s" string.') - % 'CSongDoc::CBlock') + translate('SongsPlugin.WordsofWorshipSongImport', + 'Invalid Words of Worship song file. Missing "%s" string.') + % 'CSongDoc::CBlock') continue # Seek to the beginning of the first block song_data.seek(82)