From: Matthijs Kooijman Date: Tue, 3 Nov 2009 08:40:15 +0000 (+0100) Subject: Don't let ListView call a non-existent method on its superclass. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fmobilegtd.git;a=commitdiff_plain;h=f4c5b327a5fb8541547d943f067623bafcad2645 Don't let ListView call a non-existent method on its superclass. --- 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))