From 211bd38bbf8c0031bdfada8998bc47d11098f6da Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 13 Mar 2013 22:44:06 +0200 Subject: [PATCH] Some minor PyLint cleanups --- openlp/plugins/songs/forms/editsongform.py | 2 +- openlp/plugins/songs/forms/songbookform.py | 3 +++ openlp/plugins/songs/forms/topicsform.py | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index a75a0916c..a37ef636a 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -797,7 +797,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog): """ Free up autocompletion memory on dialog exit """ - log.debug (u'SongEditForm.clearCaches') + log.debug(u'SongEditForm.clearCaches') self.authors = [] self.themes = [] self.books = [] diff --git a/openlp/plugins/songs/forms/songbookform.py b/openlp/plugins/songs/forms/songbookform.py index 85b8e9011..691f58ffc 100644 --- a/openlp/plugins/songs/forms/songbookform.py +++ b/openlp/plugins/songs/forms/songbookform.py @@ -26,6 +26,9 @@ # with this program; if not, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### +""" +This module contains the song book form +""" from PyQt4 import QtGui diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py index 70e86efe4..3a9fcfb25 100644 --- a/openlp/plugins/songs/forms/topicsform.py +++ b/openlp/plugins/songs/forms/topicsform.py @@ -26,6 +26,9 @@ # with this program; if not, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### +""" +This module contains the topic edit form. +""" from PyQt4 import QtGui