Fix string to list

This commit is contained in:
Klaus-Uwe Mitterer 2015-03-19 21:09:56 +01:00
parent fddef13b54
commit a94516bd20

View file

@ -73,7 +73,8 @@ while True:
words = text.split(" ")
for word in words:
wordlist += word
if word[0] = "@":
wordlist += [word]
wordlist = list(set(wordlist))
try: