aboutsummaryrefslogtreecommitdiff
path: root/pydora
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2014-01-24 16:10:47 -0500
committerMike Crute <mcrute@gmail.com>2014-01-24 16:10:47 -0500
commit3124125ebdba337c22dfb84f2c29151e8cbc105f (patch)
tree223c97f970ce04b2eb729247b101d474b853e5ad /pydora
parent1e8502b1eabb8e595f1f23d26e62d7763097b2a0 (diff)
downloadpydora-3124125ebdba337c22dfb84f2c29151e8cbc105f.tar.bz2
pydora-3124125ebdba337c22dfb84f2c29151e8cbc105f.tar.xz
pydora-3124125ebdba337c22dfb84f2c29151e8cbc105f.zip
Fix unicode errorsrelease-0.2.2
Diffstat (limited to 'pydora')
-rwxr-xr-xpydora/player.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydora/player.py b/pydora/player.py
index 6a9c345..8842f24 100755
--- a/pydora/player.py
+++ b/pydora/player.py
@@ -63,7 +63,7 @@ class PlayerApp:
63 def play(self, song): 63 def play(self, song):
64 """Play callback 64 """Play callback
65 """ 65 """
66 print('{} by {}'.format(Colors.blue(song.song_name), 66 print(u'{} by {}'.format(Colors.blue(song.song_name),
67 Colors.yellow(song.artist_name))) 67 Colors.yellow(song.artist_name)))
68 68
69 def skip_song(self, song): 69 def skip_song(self, song):