From f4c5b327a5fb8541547d943f067623bafcad2645 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 3 Nov 2009 09:40:15 +0100 Subject: [PATCH] Don't let ListView call a non-existent method on its superclass. --- src/gui/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/gui.py b/src/gui/gui.py index aadffa5..ea288a3 100644 --- a/src/gui/gui.py +++ b/src/gui/gui.py @@ -164,7 +164,7 @@ class ListView(View): This function is called when the user selects an an entry (e.g., navigates to it and push the ok button). """ - super(ListView).entry_selected() + pass def update(self,subject=None): #logger.log(u'Updated %s'%repr(self)) -- 2.30.2