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 1S3FwM-00067Q-5D for garchives@archives.gentoo.org; Fri, 02 Mar 2012 00:01:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48ACAE0792; Fri, 2 Mar 2012 00:01:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1C340E0792 for ; Fri, 2 Mar 2012 00:01:34 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6AAD81B4004 for ; Fri, 2 Mar 2012 00:01:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 25F87E542A for ; Fri, 2 Mar 2012 00:01:33 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1330646466.4ee500e06ca5625b48ec22e1ba431b191423f6e7.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/package.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4ee500e06ca5625b48ec22e1ba431b191423f6e7 X-VCS-Branch: gentoolkit Date: Fri, 2 Mar 2012 00:01:33 +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: 28bfc7d0-e611-4b57-8f1e-87a5c54212ee X-Archives-Hash: 7a1f71d4e5d1537a374ebb6b5bc84a2a commit: 4ee500e06ca5625b48ec22e1ba431b191423f6e7 Author: Brian Dolbec gentoo org> AuthorDate: Fri Mar 2 00:01:06 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Mar 2 00:01:06 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D4ee500e0 fix bug 406495. renamed portage.config() parameter from _eprefix to epre= fix. --- pym/gentoolkit/package.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/gentoolkit/package.py b/pym/gentoolkit/package.py index 85dbfd0..38f2901 100644 --- a/pym/gentoolkit/package.py +++ b/pym/gentoolkit/package.py @@ -62,9 +62,9 @@ from gentoolkit.eprefix import EPREFIX # =3D=3D=3D=3D=3D=3D=3D =20 if EPREFIX: - default_settings =3D portage.config(local_config=3DTrue, _eprefix=3DEPR= EFIX) + default_settings =3D portage.config(local_config=3DTrue, eprefix=3DEPRE= FIX) default_settings.lock() - nolocal_settings =3D portage.config(local_config=3DFalse, _eprefix=3DEP= REFIX) + nolocal_settings =3D portage.config(local_config=3DFalse, eprefix=3DEPR= EFIX) nolocal_settings.lock() else: default_settings =3D portage.config(local_config=3DTrue)