diff options
| -rw-r--r-- | src/join.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/join.py b/src/join.py index 71acea5..8c6440a 100644 --- a/src/join.py +++ b/src/join.py @@ -205,7 +205,7 @@ def concurrently(*fs): ''' ts = [threading.Thread(target = f) for f in fs] for t in ts: - ts.start() + t.start() for t in ts: - ts.join() + t.join() |
