Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: layman/
Date: Thu, 05 Feb 2015 02:20:42
Message-Id: 1423102822.dabd69cf0242df36d155fe21e2fce779c7de313c.twitch153@gentoo
1 commit: dabd69cf0242df36d155fe21e2fce779c7de313c
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 5 02:20:22 2015 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 5 02:20:22 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=dabd69cf
7
8 updater.py: Fixes flub of incorrectly calling var messages, message
9
10 ---
11 layman/updater.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/layman/updater.py b/layman/updater.py
15 index 7ccc9bd..2d22b59 100644
16 --- a/layman/updater.py
17 +++ b/layman/updater.py
18 @@ -148,7 +148,7 @@ class Main(object):
19 make_conf = '/etc/portage/make.conf'
20 if not os.access(make_conf, os.F_OK):
21 make_conf = '/etc/make.conf'
22 - message += [
23 + messages += [
24 "If this is the very first overlay you add with layman,",
25 "you need to append the following statement to your",
26 "%s file:" % make_conf,