From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-364821-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QkLa2-0005IN-2F
	for garchives@archives.gentoo.org; Fri, 22 Jul 2011 19:40:14 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5B47B21C491;
	Fri, 22 Jul 2011 19:40:01 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 304DF21C491
	for <gentoo-commits@lists.gentoo.org>; Fri, 22 Jul 2011 19:40:01 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id A9A521B4014
	for <gentoo-commits@lists.gentoo.org>; Fri, 22 Jul 2011 19:40:00 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id CACB28003D
	for <gentoo-commits@lists.gentoo.org>; Fri, 22 Jul 2011 19:39:59 +0000 (UTC)
From: "Wiktor W Brodlo" <wiktor@brodlo.net>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" <wiktor@brodlo.net>
Message-ID: <6144d7dccfedd33fa2f36c6b7b6433616b433d9f.wiktor@gentoo>
Subject: [gentoo-commits] proj/anaconda:master commit in: /
X-VCS-Repository: proj/anaconda
X-VCS-Files: gui.py
X-VCS-Directories: /
X-VCS-Committer: wiktor
X-VCS-Committer-Name: Wiktor W Brodlo
X-VCS-Revision: 6144d7dccfedd33fa2f36c6b7b6433616b433d9f
Date: Fri, 22 Jul 2011 19:39:59 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: 842ab41fc0110bfdf94efcb5c9b988e4

commit:     6144d7dccfedd33fa2f36c6b7b6433616b433d9f
Author:     wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
AuthorDate: Fri Jul 22 19:39:49 2011 +0000
Commit:     Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
CommitDate: Fri Jul 22 19:39:49 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;=
a=3Dcommit;h=3D6144d7dc

gui.py: forgot to give set_chapter a self

---
 gui.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gui.py b/gui.py
index c59d16e..f21a71f 100755
--- a/gui.py
+++ b/gui.py
@@ -1505,7 +1505,7 @@ class InstallControlWindow:
         self.setup_window(False)
         gtk.main()
        =20
-    def set_chapter(number, title, url):
+    def set_chapter(self, number, title, url):
         self.mainxml.get_widget("chapter_header").set_label(_("Chapter %=
i:") % number)
         self.mainxml.get_widget("chapter_link").set_label(title)
         self.mainxml.get_widget("chapter_link").set_uri(url)