summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-15 10:23:04 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-15 10:23:04 +0000
commit9df37386d4a301a0e9269659cb76154e8aa40c26 (patch)
tree12b17726f39e5207b65c6e0db76e588fc264440e /pym
parenteb2f4620e799b0f60094b53bcfb1e1884a4b6f5c (diff)
downloadportage-9df37386d4a301a0e9269659cb76154e8aa40c26.tar.gz
portage-9df37386d4a301a0e9269659cb76154e8aa40c26.tar.bz2
portage-9df37386d4a301a0e9269659cb76154e8aa40c26.zip
For bug #182105, fix the spelling of the fd_pipes paremeter. (trunk r6846)
svn path=/main/branches/2.1.2/; revision=6847
Diffstat (limited to 'pym')
-rw-r--r--pym/output.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/output.py b/pym/output.py
index 6886e5cbb..2f8e63fcd 100644
--- a/pym/output.py
+++ b/pym/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)