mirror of
https://github.com/beetbox/beets.git
synced 2026-02-19 22:03:05 +01:00
command-output: Wire subproc stdin to /dev/null
This should fix 2488, where beet convert would prevent further inputs.
This commit is contained in:
parent
80f77aea4d
commit
7a3c786215
1 changed files with 1 additions and 0 deletions
|
|
@ -801,6 +801,7 @@ def command_output(cmd, shell=False):
|
|||
cmd,
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
stdin=subprocess.DEVNULL,
|
||||
close_fds=platform.system() != 'Windows',
|
||||
shell=shell
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue