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, 01 Aug 2011 00:35:50
Message-Id: abe502625317726e3ff855265da6e015693eeb0d.wiktor@gentoo
1 commit: abe502625317726e3ff855265da6e015693eeb0d
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Mon Aug 1 00:35:24 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Mon Aug 1 00:35:24 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=abe50262
7
8 iw/mirrorselect_gui.py: ipv? flags: fix assignment
9
10 ---
11 iw/mirrorselect_gui.py | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py
15 index cd3009a..225d96d 100644
16 --- a/iw/mirrorselect_gui.py
17 +++ b/iw/mirrorselect_gui.py
18 @@ -93,9 +93,9 @@ class MirrorselectWindow(InstallWindow):
19 cb = gtk.CheckButton(label=data["url"], use_underline=False)
20
21 if data["ipv4"] == "y":
22 - ipv4 == "ipv4"
23 + ipv4 = "ipv4"
24 if data["ipv6"] == "y":
25 - ipv6 == " ipv6"
26 + ipv6 = " ipv6"
27
28 ts.append([cb, mirror, ipv4, ipv6])