From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 178C01383E1 for ; Tue, 1 Sep 2015 05:59:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ABC6142B1; Tue, 1 Sep 2015 05:59:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B8C81428A for ; Tue, 1 Sep 2015 05:59:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D480E34084A for ; Tue, 1 Sep 2015 05:58:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9983186 for ; Tue, 1 Sep 2015 05:58:56 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1440968169.4328dcd693ae02a77c519e5186e5430171c16ac5.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4328dcd693ae02a77c519e5186e5430171c16ac5 X-VCS-Branch: pending Date: Tue, 1 Sep 2015 05:58:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ce7b6877-81a6-4ea0-95c5-2de05852c699 X-Archives-Hash: 4cf51060b628a8b6efdcf7e52412cd39 Message-ID: <20150901055856.458kF61dfwOwuX4AbjVnf8sUV2IWunTsj9PrR0uoutA@z> commit: 4328dcd693ae02a77c519e5186e5430171c16ac5 Author: Brian Dolbec gentoo org> AuthorDate: Sun Aug 30 20:55:52 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Aug 30 20:56:09 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4328dcd6 catalyst/main.py: Fix variables not being substituted with correct values catalyst/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalyst/main.py b/catalyst/main.py index a222209..2335495 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -107,8 +107,8 @@ def parse_config(myconfig): else: conf_values[x]=myconf[x] else: - print "Setting",x,"to default value \""+confdefaults[x]+"\"" - conf_values[x]=confdefaults[x] + conf_values[x] = confdefaults[x] % confdefaults + print "Setting",x,"to default value \"" + conf_values[x] + "\"" # add our python base directory to use for loading target arch's conf_values["PythonDir"] = __selfpath__