From b0c82f6b6e69bb03cd665a03ff19dae4d430ca06 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Fri, 22 May 2015 19:55:15 +0100 Subject: [PATCH] Fix syntax error --- gramps/plugins/gramplet/todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/gramplet/todo.py b/gramps/plugins/gramplet/todo.py index 9cb006ba8..826099321 100644 --- a/gramps/plugins/gramplet/todo.py +++ b/gramps/plugins/gramplet/todo.py @@ -51,7 +51,7 @@ class ToDo(Gramplet): self.right.set_tooltip_text(_('Next To Do note')) self.right.set_sensitive(False) hbox.pack_start(self.right, False, False, 0) - self.edit = SimpleButton('gtk-edit' self.edit_clicked) + self.edit = SimpleButton('gtk-edit', self.edit_clicked) self.edit.set_tooltip_text(_('Edit the selected To Do note')) self.edit.set_sensitive(False) hbox.pack_start(self.edit, False, False, 0)