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: Sun, 03 Jul 2011 20:25:20
Message-Id: 0a06b4b94817be49ac69a2cc4d1ae8a283c2765d.wiktor@gentoo
1 commit: 0a06b4b94817be49ac69a2cc4d1ae8a283c2765d
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Sun Jul 3 16:49:23 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Sun Jul 3 16:49:23 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=0a06b4b9
7
8 w/mirrorselect_gui.py: add "self"
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 9e2699b..faa99b2 100644
16 --- a/iw/mirrorselect_gui.py
17 +++ b/iw/mirrorselect_gui.py
18 @@ -66,7 +66,7 @@ class MirrorselectWindow(InstallWindow):
19
20 self.table = self.xml.get_widget("mirrors_table")
21
22 - addMirrors(self.table, self.mirrors, mirrors_parsed)
23 + self.addMirrors(self.table, self.mirrors, mirrors_parsed)
24
25 return self.align
26
27 @@ -75,7 +75,7 @@ class MirrorselectWindow(InstallWindow):
28 for region in regions:
29 for country in countries:
30 for mirror in mirrors:
31 - addMirrorRow(table, region, country, mirror, mirror_data[region][country][mirror])
32 + self.addMirrorRow(table, region, country, mirror, mirror_data[region][country][mirror])
33
34 def addMirrorRow(self, table, region, country, mirror, data):
35 cols = table.get_property("n-columns")