Don't let ListView call a non-existent method on its superclass.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 3 Nov 2009 08:40:15 +0000 (09:40 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 3 Nov 2009 08:40:37 +0000 (09:40 +0100)
src/gui/gui.py

index aadffa50c2da1041989c581cdeba7b9f215ef902..ea288a3d7ef8b876798824aaae955e6c5d78c053 100644 (file)
@@ -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))