Fixed match var typo

This commit is contained in:
Jacob Henry 2016-11-29 23:33:59 +00:00
parent daba1363be
commit 5e4745ffa2
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def handleKongMsg(slack, msg):
reply_callback(response)
elif match.group(1) != "":
st = SongThread(reply_callback, m.group(1))
st = SongThread(reply_callback, match.group(1))
st.start()
else:
st = SongThread(reply_callback, DEFAULT_SONG)