Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
Date: Mon, 04 Jul 2011 12:56:29
Message-Id: fe83179fa51294f15aa2e4ad50cefa457d873680.wiktor@gentoo
1 commit: fe83179fa51294f15aa2e4ad50cefa457d873680
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Mon Jul 4 12:56:03 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Mon Jul 4 12:56:03 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=fe83179f
7
8 w/use_gui.py: keep a sorted list of USE flags
9
10 ---
11 iw/use_gui.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/iw/use_gui.py b/iw/use_gui.py
15 index b78e529..f2980ae 100644
16 --- a/iw/use_gui.py
17 +++ b/iw/use_gui.py
18 @@ -58,7 +58,7 @@ class UseWindow(InstallWindow):
19 s = line.split(" - ")
20 if s[0] and s[1]:
21 use[s[0]] = s[1]
22 - use.append(s[0])
23 + use_list.append(s[0])
24
25 table = self.xml.get_widget("use_table")