From 1692da442bd9745b4d947b9ffcd0f084be2330d0 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 21 Dec 2008 07:50:39 +0000 Subject: [PATCH] Remove Print statements. bzr-revno: 254 --- openlp/plugins/songs/songsplugin.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 42cbfa958..25021a73d 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -197,18 +197,13 @@ class SongsPlugin(Plugin): def onSearchTextButton(self): searchtext = str(self.SearchTextEdit.displayText() ) ct = self.SearchTypeComboBox.currentText() - print ct , str(ct) if self.SearchTypeComboBox.currentText()=="Titles": - print "Titles" self.searchresults = self.songmanager.get_song_from_title(searchtext) elif self.SearchTypeComboBox.currentText()=="Lyrics": - print "Lyrics" self.searchresults = self.songmanager.get_song_from_lyrics(searchtext) elif self.SearchTypeComboBox.currentText()=="Authors": - print "Authors" self.searchresults = self.songmanager.get_song_from_author(searchtext) - else: - print "missed ", ct + self._display_results() def onSongNewClick(self):