aboutsummaryrefslogtreecommitdiff
path: root/pydora
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2015-06-25 22:01:15 -0700
committerMike Crute <mcrute@gmail.com>2015-06-25 22:01:15 -0700
commitc9030b61b47567b5688fba8cf9397c34c9cb2047 (patch)
treeadcb42ae3d9dd6bc2f775f8bba9fabd95ded151b /pydora
parent68a9f3e0545bb923928de31d16e3043e3ffcd7dc (diff)
downloadpydora-c9030b61b47567b5688fba8cf9397c34c9cb2047.tar.bz2
pydora-c9030b61b47567b5688fba8cf9397c34c9cb2047.tar.xz
pydora-c9030b61b47567b5688fba8cf9397c34c9cb2047.zip
Use cyan instead of blue in song name
fixes #9
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 8842f24..f8ccd93 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(u'{} by {}'.format(Colors.blue(song.song_name), 66 print(u'{} by {}'.format(Colors.cyan(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):