From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RdWak-0001do-KG for garchives@archives.gentoo.org; Thu, 22 Dec 2011 00:33:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4292221C05B; Thu, 22 Dec 2011 00:32:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 11E0121C05B for ; Thu, 22 Dec 2011 00:32:54 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 897BE1B4021 for ; Thu, 22 Dec 2011 00:32:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0157D80042 for ; Thu, 22 Dec 2011 00:32:54 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <6b5ffa8fc0d01647d123fe62686c724f3c832b20.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dbapi/vartree.py X-VCS-Directories: pym/portage/dbapi/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6b5ffa8fc0d01647d123fe62686c724f3c832b20 Date: Thu, 22 Dec 2011 00:32:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a8871fb3-05a3-47ef-98f5-30339e8d9579 X-Archives-Hash: 5f49aacdefa94c0d2f34fbfa6d53a7cc commit: 6b5ffa8fc0d01647d123fe62686c724f3c832b20 Author: Zac Medico gentoo org> AuthorDate: Thu Dec 22 00:32:48 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Dec 22 00:32:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D6b5ffa8f vardbapi._aux_get: unicode EAPI key --- pym/portage/dbapi/vartree.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index c2e90d8..d93d3c2 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -743,7 +743,7 @@ class vardbapi(dbapi): results[k] =3D v =20 if results.get("EAPI") =3D=3D "": - results["EAPI"] =3D _unicode_decode('0') + results[_unicode_decode("EAPI")] =3D _unicode_decode('0') =20 return results =20