* src/GrampsCfg.py: Add comment about SUSE naming of gconf

* src/Relationship.py: detect a RuntimeError exception that occurs
when we exceed the recursion depth limit. This occurs when a
relationship loop is detected
* src/gramps_main.py: handle relationship loop message


svn: r2355
This commit is contained in:
Don Allingham
2003-11-20 04:18:10 +00:00
parent 1ab08c6514
commit b28d22243a
3 changed files with 13 additions and 4 deletions

View File

@@ -1366,8 +1366,11 @@ class Gramps:
self.active_person)
if name:
return _("%(relationship)s of %(person)s") % {
'relationship' : name, 'person' : pname }
if plist == None:
return name
else:
return _("%(relationship)s of %(person)s") % {
'relationship' : name, 'person' : pname }
else:
return ""
except: