From 7cc168f6409af13fda815d0d2a6db25b7c9ba367 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 12 Aug 2021 16:55:07 -0700 Subject: [PATCH] add comment --- jc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index a756eb91..b79b50be 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -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()