From 91a32d33a716d0754027da7ac3d3302acde2fd34 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 8 Mar 2017 22:36:11 -0700 Subject: [PATCH] Fix a linting issue --- openlp/plugins/songs/lib/importers/openlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/lib/importers/openlp.py b/openlp/plugins/songs/lib/importers/openlp.py index 0910f376c..f13ed4620 100644 --- a/openlp/plugins/songs/lib/importers/openlp.py +++ b/openlp/plugins/songs/lib/importers/openlp.py @@ -172,7 +172,7 @@ class OpenLPSongImport(SongImport): else: song_props['book'] = relation(OldBook, backref='songs') if has_authors_songs: - song_props['authors_songs'] = relation(OldAuthorSong) + song_props['authors_songs'] = relation(OldAuthorSong) # Map the rest of the tables try: class_mapper(OldAuthor)