diff options
-rwxr-xr-x | src/daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon.py b/src/daemon.py index 11dfb51a..395054a7 100755 --- a/src/daemon.py +++ b/src/daemon.py @@ -65,7 +65,7 @@ class Executor(threading.Thread): log.error('Could not open redirection file: %s', self.filename, exc_info=True) return try: - subprocess.call(self.command) + subprocess.call(self.command, stdout=stdout, stderr=DEVNULL) except: if self.remote: import traceback |