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 59046138A1A for ; Thu, 5 Feb 2015 02:20:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26A60E085D; Thu, 5 Feb 2015 02:20:41 +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 C0D59E085D for ; Thu, 5 Feb 2015 02:20:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A968E34075B for ; Thu, 5 Feb 2015 02:20:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED6001113B for ; Thu, 5 Feb 2015 02:20:35 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1423102822.dabd69cf0242df36d155fe21e2fce779c7de313c.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/updater.py X-VCS-Directories: layman/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: dabd69cf0242df36d155fe21e2fce779c7de313c X-VCS-Branch: master Date: Thu, 5 Feb 2015 02:20:35 +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: 7907d0db-54df-4dd4-99be-e3f1944cb7be X-Archives-Hash: ee69a6fc6d19a0407fc10df595e9461c commit: dabd69cf0242df36d155fe21e2fce779c7de313c Author: Devan Franchini gentoo org> AuthorDate: Thu Feb 5 02:20:22 2015 +0000 Commit: Devan Franchini gentoo org> CommitDate: Thu Feb 5 02:20:22 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=dabd69cf updater.py: Fixes flub of incorrectly calling var messages, message --- layman/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layman/updater.py b/layman/updater.py index 7ccc9bd..2d22b59 100644 --- a/layman/updater.py +++ b/layman/updater.py @@ -148,7 +148,7 @@ class Main(object): make_conf = '/etc/portage/make.conf' if not os.access(make_conf, os.F_OK): make_conf = '/etc/make.conf' - message += [ + messages += [ "If this is the very first overlay you add with layman,", "you need to append the following statement to your", "%s file:" % make_conf,