issues with queue[0]
This commit is contained in:
parent
202dd982ca
commit
204092415b
@ -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):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user