* src/plugins/Desbrowser.py: check for active person

svn: r6410
This commit is contained in:
Don Allingham
2006-04-22 04:04:02 +00:00
parent c35818b656
commit a353ab6c53
2 changed files with 7 additions and 0 deletions

View File

@@ -65,6 +65,12 @@ class DesBrowse(Tool.Tool, ManagedWindow.ManagedWindow):
self.active = dbstate.get_active_person()
self.callback = callback
if not self.active:
ErrorDialog(_('Active person has not been set'),
_('You must select an active person for this '
'tool to work properly.'))
return
base = os.path.dirname(__file__)
glade_file = base + os.sep + "desbrowse.glade"