* src/FamilyList.py: call family editor

* src/StartupDialog.py: pwm in try/except
* src/gramps.py: don't fail on missing SIG_CHILD


svn: r5724
This commit is contained in:
Don Allingham
2006-01-12 05:40:44 +00:00
parent a015158c65
commit 67032ee826
5 changed files with 21 additions and 2006 deletions

View File

@ -192,10 +192,9 @@ class StartupDialog:
name = GrampsKeys.get_researcher_name()
if not name or name.strip() == "":
import pwd
import os
try:
import pwd
import os
name = pwd.getpwnam(os.environ['USER'])[4]
except:
name = ""