From c709c8e030891739cd118a01d5a73ecaf3c5a419 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sat, 28 Sep 2019 23:44:19 -0500 Subject: [PATCH] try to fix stderr broken pipe --- onionr/onionrcommands/daemonlaunch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/onionr/onionrcommands/daemonlaunch.py b/onionr/onionrcommands/daemonlaunch.py index 797860e1..dc2dbd64 100755 --- a/onionr/onionrcommands/daemonlaunch.py +++ b/onionr/onionrcommands/daemonlaunch.py @@ -114,6 +114,7 @@ def daemon(): except KeyboardInterrupt: pass cleanup.delete_run_files() + sys.stderr.close() def _ignore_sigint(sig, frame): '''This space intentionally left blank'''