Skip to content
This repository has been archived by the owner on Oct 25, 2019. It is now read-only.

Commit

Permalink
wuvt: update output format
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantmonkey committed Jan 12, 2016
1 parent c859ad0 commit 62893cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/wuvt.py
Expand Up @@ -19,14 +19,14 @@ def wuvt(phenny, input):

if 'listeners' in trackinfo:
phenny.say(
"{dj} is currently playing {title} by {artist} with {listeners:d} "
"online listeners".format(
"{dj} is currently playing \"{title}\" by {artist} with "
"{listeners:d} online listeners".format(
dj=trackinfo['dj'],
title=trackinfo['title'],
artist=trackinfo['artist'],
listeners=trackinfo['listeners']))
else:
phenny.say("{dj} is currently playing {title} by {artist}".format(
phenny.say("{dj} is currently playing \"{title}\" by {artist}".format(
dj=trackinfo['dj'],
title=trackinfo['title'],
artist=trackinfo['artist']))
Expand Down

0 comments on commit 62893cb

Please sign in to comment.