Skip to content

Commit

Permalink
Merge pull request #59 from frastlin/master
Browse files Browse the repository at this point in the history
Added daemon to InputDevice._pipe on line 2533
  • Loading branch information
zeth authored Feb 9, 2019
2 parents 06b43a1 + 5a7075d commit a46681d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2530,7 +2530,7 @@ def _pipe(self):

self.__pipe, child_conn = Pipe(duplex=False)
self._listener = Process(target=target_function,
args=(child_conn,))
args=(child_conn,), daemon=True)
self._listener.start()
return self.__pipe

Expand Down

0 comments on commit a46681d

Please sign in to comment.