Rev 631: Fix typo. in file:///home/jelmer/bzr-gtk/trunk/
Jelmer Vernooij
jelmer at samba.org
Thu Mar 5 16:45:42 GMT 2009
At file:///home/jelmer/bzr-gtk/trunk/
------------------------------------------------------------
revno: 631
revision-id: jelmer at samba.org-20090305164541-f7sjawfpd64xhfv1
parent: jelmer at samba.org-20090305164412-y0m9osmjwd4iu7r0
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Thu 2009-03-05 17:45:41 +0100
message:
Fix typo.
=== modified file 'notify.py'
--- a/notify.py 2008-10-29 08:36:29 +0000
+++ b/notify.py 2009-03-05 16:45:41 +0000
@@ -29,6 +29,7 @@
class NotifyPopupMenu(gtk.Menu):
+
def __init__(self):
super(NotifyPopupMenu, self).__init__()
self.create_items()
@@ -63,7 +64,7 @@
self.append(item)
self.append(gtk.SeparatorMenuItem())
item = gtk.ImageMenuItem(gtk.STOCK_QUIT, None)
- item.connect('activate', gtk.main_quit)
+ item.connect('activate', self.quit)
self.append(item)
self.show_all()
@@ -93,3 +94,5 @@
prefs = PreferencesWindow()
prefs.run()
+ def quit(self, item):
+ gtk.main_quit()
=== modified file 'revisionview.py'
--- a/revisionview.py 2009-03-05 16:44:12 +0000
+++ b/revisionview.py 2009-03-05 16:45:41 +0000
@@ -408,7 +408,7 @@
else:
authors = revision.get_apparent_authors()
if authors != [revision.committer]:
- self.author.set_text("\n".join(author))
+ self.author.set_text("\n".join(authors))
self.author.show()
self.author_label.show()
else:
More information about the bazaar-commits
mailing list