issues with queue[0]

This commit is contained in:
Sean Corrigan 2020-12-24 15:26:33 -05:00
parent 202dd982ca
commit 204092415b

View File

@ -14,12 +14,10 @@ def listfromAPI(message):
continue # skip if blank first message
if mess[0] == " ":
queueList.append(mess[1:])
# Quick Bugfix
fixcomma = queueList[0].split()
queueList[0] = "".join(fixcomma[:-1])
print(queueList)
return queueList
queueList.append(mess)
# fixcomma = queueList[0].split()
queueList[0] = "".join(queueList[0][:-1])
print(queueList[0])
return queueList
def fixformatting(message):