summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-02-21 02:44:24 +0000
committerZac Medico <zmedico@gentoo.org>2009-02-21 02:44:24 +0000
commitf55eb386c7fbd8b54d846782e834f071e3784073 (patch)
tree53fc64ced560c7b7440ddb044436b28fed35479f /pym
parent3eaa2ce16e643816507068a7033c618425dd83c4 (diff)
downloadportage-f55eb386c7fbd8b54d846782e834f071e3784073.tar.gz
portage-f55eb386c7fbd8b54d846782e834f071e3784073.tar.bz2
portage-f55eb386c7fbd8b54d846782e834f071e3784073.zip
Inside portage.spawn(), open files for logfile handling in binary mode, for
compatibility with python-3.0. svn path=/main/trunk/; revision=12668
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 3be6e651f..c18d43013 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -3198,9 +3198,9 @@ def spawn(mystring, mysettings, debug=0, free=0, droppriv=0, sesandbox=0, fakero
return mypids
if logfile:
- log_file = open(logfile, 'a')
- stdout_file = os.fdopen(os.dup(fd_pipes_orig[1]), 'w')
- master_file = os.fdopen(master_fd, 'r')
+ log_file = open(logfile, mode='ab')
+ stdout_file = os.fdopen(os.dup(fd_pipes_orig[1]), 'wb')
+ master_file = os.fdopen(master_fd, 'rb')
iwtd = [master_file]
owtd = []
ewtd = []