From 87bdc5e4b5a788547764e1c222008a6c7c54232a Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 4 Dec 2014 16:56:49 +0100 Subject: Use Python-3-style print function to match coding style This also makes a possible transition to Python 3.x easier --- client/modules/MPDControl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/modules/MPDControl.py') diff --git a/client/modules/MPDControl.py b/client/modules/MPDControl.py index 2548237..ee0904b 100644 --- a/client/modules/MPDControl.py +++ b/client/modules/MPDControl.py @@ -131,10 +131,10 @@ class MusicMode(object): # self.mic.say("Found songs") # self.music.play(songs = songs) - # print "SONG RESULTS" - # print "============" + # print("SONG RESULTS") + # print("============") # for song in songs: - # print "Song: %s Artist: %s" % (song.title, song.artist) + # print("Song: %s Artist: %s" % (song.title, song.artist)) # self.mic.say("Playing %s" % self.music.current_song()) -- cgit v1.3.1