diff options
-rw-r--r-- | pym/portage/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py index ff960d843..a2ed22dc3 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -202,7 +202,7 @@ def xtermTitleReset(): shell = find_binary("sh") if shell: spawn([shell, "-c", prompt_command], env=os.environ, - fdpipes={0:sys.stdin.fileno(),1:sys.stderr.fileno(), + fd_pipes={0:sys.stdin.fileno(),1:sys.stderr.fileno(), 2:sys.stderr.fileno()}) else: os.system(prompt_command) |