why am i so bad at everything

This commit is contained in:
Lynne 2018-10-27 16:43:45 +10:00
parent 62e20ee6ae
commit a1324acfba
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def make_toot_markov(query = None):
toot = None
while toot == None and tries < 25:
pin, pout = multiprocessing.Pipe(False)
p = multiprocessing.Process(target = make_sentence, args = [pout, query])
p = multiprocessing.Process(target = make_sentence, args = [pout])
p.start()
p.join(10)
if p.is_alive():