From a1324acfba356184bcddb1d0b2ecfb00c3fcb5b9 Mon Sep 17 00:00:00 2001 From: Lynne Date: Sat, 27 Oct 2018 16:43:45 +1000 Subject: [PATCH] why am i so bad at everything --- create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create.py b/create.py index 9c20553..43e6c49 100755 --- a/create.py +++ b/create.py @@ -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():