Skip to content

Commit

Permalink
change threads daemon to false
Browse files Browse the repository at this point in the history
  • Loading branch information
9nix00 committed Jul 2, 2014
1 parent 6fe010c commit a498b00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion comb/combd.py
Expand Up @@ -43,7 +43,7 @@ def __init__(self, slot, *args, **kwargs):
i = 0
while i < threads_num:
t = Thread(target=worker, args=[iterator])
t.daemon = True
t.daemon = False
t.start()
i += 1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@

setup(
name='comb',
version='0.8.23',
version='0.8.30',
packages=['comb', 'comb.mq', 'comb.demo'],
scripts=['bin/comb'],
install_requires=['cliez'],
Expand Down

0 comments on commit a498b00

Please sign in to comment.