wuvt: call strip on artist and track name
parent
8c5ace989c
commit
63c6adb316
|
@ -27,7 +27,8 @@ def wuvt(phenny, input) :
|
|||
dj = r_dj.search(djpage).group(1)
|
||||
|
||||
if song and artist:
|
||||
phenny.reply('DJ {0} is currently playing: {1} by {2}'.format(dj.strip(),song,artist))
|
||||
phenny.reply('DJ {0} is currently playing: {1} by {2}'
|
||||
.format(dj.strip(), song.strip(), artist.strip()))
|
||||
else:
|
||||
phenny.reply('Cannot connect to wuvt')
|
||||
wuvt.commands = ['wuvt']
|
||||
|
|
Loading…
Reference in New Issue