summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-15 10:22:04 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-15 10:22:04 +0000
commit919274470ec75c602748fd277d9625bf40847353 (patch)
tree48ae4a7dd0de54d61c082bd736e76244f11c821d /pym
parentd0d939778dc6219c5888bdd18ec68d87e55b69b5 (diff)
downloadportage-919274470ec75c602748fd277d9625bf40847353.tar.gz
portage-919274470ec75c602748fd277d9625bf40847353.tar.bz2
portage-919274470ec75c602748fd277d9625bf40847353.zip
For bug #182105, fix the spelling of the fd_pipes paremeter.
svn path=/main/trunk/; revision=6846
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/output.py2
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)