wuvt: fix artist/track name ordering

master
mutantmonkey 2012-06-09 22:14:08 -07:00
parent cf53da9d6e
commit 8c5ace989c
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ def wuvt(phenny, input) :
except (URLError, HTTPError):
raise GrumbleError('Cannot connect to wuvt')
play= r_play.search(playing)
song = play.group(1)
artist = play.group(2)
song = play.group(2)
artist = play.group(1)
dj = r_dj.search(djpage).group(1)
if song and artist: