1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

add comment

This commit is contained in:
Kelly Brazil
2021-08-12 16:55:07 -07:00
parent ff2d609c9b
commit 7cc168f640

View File

@ -469,7 +469,7 @@ def run_user_command(command):
proc = subprocess.Popen(command,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
close_fds=False,
close_fds=False, # Allows inheriting file descriptors. Useful for process substitution
universal_newlines=True)
stdout, stderr = proc.communicate()