diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-03-07 16:50:09 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-03-07 16:50:09 +0100 |
| commit | bb7a0e796f6e2f4fcf14cac6a959d76548d17596 (patch) | |
| tree | 4a7ac98499ed24b7bd65e6741023b26d45d5a178 | |
| parent | test signal fragments and unjoining (diff) | |
| download | join-python-bb7a0e796f6e2f4fcf14cac6a959d76548d17596.tar.gz join-python-bb7a0e796f6e2f4fcf14cac6a959d76548d17596.tar.bz2 join-python-bb7a0e796f6e2f4fcf14cac6a959d76548d17596.tar.xz | |
derp
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -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() |
