ocarina: Fix cur song display on tiny footer

It used to be "$TITLE $ARTIST".  I changed it to "$TITLE by $ARTIST"
This commit is contained in:
Bryan Schumaker 2011-04-23 10:01:47 -04:00
parent 5b8b7a8a46
commit e60848c119
1 changed files with 1 additions and 1 deletions

View File

@ -49,5 +49,5 @@ def on_pause():
load_attrs = ("title", "artist", "lenstr")
def on_load():
title, artist, lenstr = libsaria.sources.get_attrs(*load_attrs)
now_playing.set_text("%s %s" % (title, artist))
now_playing.set_text("%s by %s" % (title, artist))
duration.set_text(" / %s" % lenstr)