From d582eb0f0f9be178bb8b2cdf24e992f650743dcb Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 30 Jan 2022 11:57:46 +0100 Subject: [PATCH] don't capture output so you can see recording output --- spotigrab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotigrab.py b/spotigrab.py index 8a5f0c7..2b70c02 100644 --- a/spotigrab.py +++ b/spotigrab.py @@ -81,7 +81,7 @@ def start_rec(artist: str, title: str): logging.debug(f'starting recording subprocess: {" ".join(command)}') - subprocess.run(command, check=True, capture_output=True) + subprocess.run(command, check=True) global counter global is_recording