From 56a26b4ba5771423cb4bce25a3032ad7885120fa Mon Sep 17 00:00:00 2001 From: onemanbuilds <72015638+onemanbuilds@users.noreply.github.com> Date: Wed, 7 Oct 2020 11:11:13 +0200 Subject: [PATCH] forgot to start thread --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5c000b8..5a42a5c 100644 --- a/main.py +++ b/main.py @@ -158,5 +158,5 @@ def SpotifyCreator(method): lock = Lock() while True: lock.acquire() - Thread(target=SpotifyCreator(method)) + Thread(target=SpotifyCreator(method)).start() lock.release() \ No newline at end of file