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 <gentoo-commits+bounces-365822-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QlfyI-0005IH-5C
	for garchives@archives.gentoo.org; Tue, 26 Jul 2011 11:38:46 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 339CC21C051;
	Tue, 26 Jul 2011 11:38:38 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id F34DE21C051
	for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jul 2011 11:38:37 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 52E2C2AC015
	for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jul 2011 11:38:37 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 855918003D
	for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jul 2011 11:38:36 +0000 (UTC)
From: "Wiktor W Brodlo" <wiktor@brodlo.net>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" <wiktor@brodlo.net>
Message-ID: <43ca6fee5d4fabae6b31cdacad586c874c800c8a.wiktor@gentoo>
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
X-VCS-Repository: proj/anaconda
X-VCS-Files: iw/makeconf_gui.py
X-VCS-Directories: iw/
X-VCS-Committer: wiktor
X-VCS-Committer-Name: Wiktor W Brodlo
X-VCS-Revision: 43ca6fee5d4fabae6b31cdacad586c874c800c8a
Date: Tue, 26 Jul 2011 11:38:36 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: df313fe94da34bf2fd5aa7c3ca84c860

commit:     43ca6fee5d4fabae6b31cdacad586c874c800c8a
Author:     wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
AuthorDate: Tue Jul 26 11:38:25 2011 +0000
Commit:     Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
CommitDate: Tue Jul 26 11:38:25 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;=
a=3Dcommit;h=3D43ca6fee

iw/makeconf_gui.py: os.env is actually os.environ

---
 iw/makeconf_gui.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/iw/makeconf_gui.py b/iw/makeconf_gui.py
index 0a38a29..3eb81eb 100644
--- a/iw/makeconf_gui.py
+++ b/iw/makeconf_gui.py
@@ -45,7 +45,7 @@ class MakeconfWindow(InstallWindow):
 		return None
=20
 	def getScreen(self, anaconda):
-		if os.env["ANACONDA_PRODUCTARCH"] =3D=3D "x86":
+		if os.environ["ANACONDA_PRODUCTARCH"] =3D=3D "x86":
 			marches =3D [
 				"prescott",
 				"pentium-m",
@@ -63,7 +63,7 @@ class MakeconfWindow(InstallWindow):
 				"i686",
 				"pentiumpro",
 			]
-		if os.env["ANACONDA_PRODUCTARCH"] =3D=3D "amd64":
+		if os.environ["ANACONDA_PRODUCTARCH"] =3D=3D "amd64":
 			marches =3D ["nocona", "k8", "opteron", "athlon64", "athlon-fx"]
 		=09
 		self.anaconda =3D anaconda