2007-09-01 Don Allingham <don@gramps-project.org>

* src/DbManager.py (check_in): don't expect stdin to be open (#1203)



svn: r8920
This commit is contained in:
Don Allingham 2007-09-01 22:08:17 +00:00
parent ba289c8002
commit 325b825ca1
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-09-01 Don Allingham <don@gramps-project.org>
* src/DbManager.py (check_in): don't expect stdin to be open (#1203)
2007-09-01 Benny Malengier <benny.malengier@gramps-project.org>
* src/images/16x16/gramps-event.png:
* src/images/16x16/gramps-family.png:

View File

@ -883,7 +883,6 @@ def check_in(dbase, filename, callback, cursor_func = None):
cursor_func(_("Saving archive..."))
proc = subprocess.Popen(cmd, stderr = subprocess.PIPE )
proc.stdin.close()
message = "\n".join(proc.stderr.readlines())
proc.stderr.close()
status = proc.wait()