* src/ListModel.py (find): Prevent traceback if the entry is not found.
svn: r2257
This commit is contained in:
parent
e54014834a
commit
81b02975d6
@ -1,3 +1,6 @@
|
||||
2003-10-14 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||
* src/ListModel.py (find): Prevent traceback if the entry is not found.
|
||||
|
||||
2003-10-14 Don Allingham <dallingham@users.sourceforge.net>
|
||||
* src/data/templates/Makefile.am: install blue_edge.tpkg
|
||||
* src/docgen/HtmlDoc.py: report error correctly on missing
|
||||
|
@ -247,8 +247,9 @@ class ListModel:
|
||||
return 0
|
||||
|
||||
def find(self,info):
|
||||
iter = self.idmap[info]
|
||||
self.selection.select_iter(iter)
|
||||
if info in self.idmap.keys():
|
||||
iter = self.idmap[info]
|
||||
self.selection.select_iter(iter)
|
||||
|
||||
def cleanup(self):
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user