* 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

@@ -84,7 +84,10 @@ gettext.install("gramps",loc,unicode=1)
import gramps_main
import gobject
signal.signal(signal.SIGCHLD, signal.SIG_DFL)
try:
signal.signal(signal.SIGCHLD, signal.SIG_DFL)
except:
pass
args = sys.argv