2007-01-21 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_GrampsBSDDB.py: catch exceptions * src/DisplayState.py: catch exceptions * src/DbLoader.py: catch exceptions (DbLoader.read_file): catch exception * src/Filters/SideBar/_SidebarFilter.py: add tooltips for dates * src/Filters/SideBar/_PersonSidebarFilter.py: add tooltips for dates svn: r7949
This commit is contained in:
@ -54,7 +54,6 @@ import pango
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
import AutoComp
|
||||
import DateHandler
|
||||
import DateEdit
|
||||
import const
|
||||
import Config
|
||||
@ -613,7 +612,7 @@ class PlaceEntry:
|
||||
try:
|
||||
EditPlace(self.dbstate, self.uistate, self.track,
|
||||
place, self.place_added)
|
||||
except Errors.WindowActiveError:
|
||||
except WindowActiveError:
|
||||
pass
|
||||
|
||||
def drag_data_received(self, widget, context, x, y, selection, info, time):
|
||||
@ -635,7 +634,7 @@ class PlaceEntry:
|
||||
try:
|
||||
EditPlace(self.dbstate, self.uistate, self.track, place,
|
||||
self.after_edit)
|
||||
except Errors.WindowActiveError:
|
||||
except WindowActiveError:
|
||||
pass
|
||||
else:
|
||||
from Selectors import selector_factory
|
||||
|
Reference in New Issue
Block a user