Update plugin.py

This commit is contained in:
Gordon Shumway 2019-11-15 20:27:02 -05:00 committed by GitHub
parent a007fef8a8
commit 3df4b2cca5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class Lyrics(callbacks.Plugin):
Get song lyrics from Lyrics Wiki. Format searches as artist, song name
"""
if ',' in lyric:
lyric = lyric.split(',')
lyric = lyric.split(',', 1)
else:
irc.reply("Lyric searches must be formatted as artist, song name")
return