From 7adee7505f157e608a2b74cb5d5a52341593a0da Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 30 Jan 2010 10:41:23 +0000 Subject: Fix code from r15278 for python3 unicode compatibility. svn path=/main/trunk/; revision=15280 --- pym/portage/dbapi/vartree.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 33967e21b..16f600683 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -4593,8 +4593,9 @@ def tar_contents(contents, root, tar, protect=None, onProgress=None): # Create an empty file as a place holder in order to avoid # potential collision-protect issues. f = tempfile.TemporaryFile() - f.write("# empty file because --include-config=n " + \ - "when `quickpkg` was used\n") + f.write(_unicode_encode( + "# empty file because --include-config=n " + \ + "when `quickpkg` was used\n")) f.flush() f.seek(0) tarinfo.size = os.fstat(f.fileno()).st_size -- cgit v1.2.3-1-g7c22