diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-12-04 16:56:49 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-12-04 17:20:53 +0100 |
| commit | 87bdc5e4b5a788547764e1c222008a6c7c54232a (patch) | |
| tree | 38d7d24f8f52b41ea3017f3e05edda62a210fb18 /client/modules/MPDControl.py | |
| parent | 68e5c979ad6f643af23a8c1e5895c8bb38527328 (diff) | |
| download | jasper-client-87bdc5e4b5a788547764e1c222008a6c7c54232a.tar.gz jasper-client-87bdc5e4b5a788547764e1c222008a6c7c54232a.zip | |
Use Python-3-style print function to match coding style
This also makes a possible transition to Python 3.x easier
Diffstat (limited to 'client/modules/MPDControl.py')
| -rw-r--r-- | client/modules/MPDControl.py | 6 |
1 files changed, 3 insertions, 3 deletions
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()) |
