Skip to content

Commit

Permalink
fix: join threads, only started in background
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed May 1, 2019
1 parent 5eaae14 commit 3e853a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loggedfs/_core/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,5 @@ def terminate(self):
proc = subprocess.Popen(command, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
proc.wait()

if not self._background:
if self._background:
self._t.join()

0 comments on commit 3e853a1

Please sign in to comment.