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 14:19:14
Message-Id: 1733b313890053dd276e5da8deff50866a7268f8.wiktor@gentoo
1 commit: 1733b313890053dd276e5da8deff50866a7268f8
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Mon Jul 4 14:18:21 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Mon Jul 4 14:18:21 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=1733b313
7
8 iw/use_gui.py: tiny fix (parethesis)
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 d121cc4..bff7fc1 100644
16 --- a/iw/use_gui.py
17 +++ b/iw/use_gui.py
18 @@ -52,7 +52,7 @@ class UseWindow(InstallWindow):
19 shutil.move("/etc/make.conf.anaconda-backup", "/etc/make.conf")
20 m = re.search('USE="(.*?)"', emerge)
21 use_enabled = m.group(1)
22 - use_enabled = use_enabled.split
23 + use_enabled = use_enabled.split()
24
25 usef = open("/usr/portage/profiles/use.desc")
26 lines = usef.read().split("\n")