Missing comma in Checkpoint.py.

svn: r8369
This commit is contained in:
Brian Matherly 2007-04-09 11:40:45 +00:00
parent b7b80b3d0a
commit 61cff42d53
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-04-09 Brian Matherly <brian@gramps-project.org>
* src/plugins/Checkpoint.py: missing comma in Checkpoint.py.
2007-04-08 Brian Matherly <brian@gramps-project.org>
* src\Exporter.py
* src\ReportBase\_FileEntry.py

View File

@ -355,7 +355,7 @@ class Checkpoint(Tool.Tool, ManagedWindow.ManagedWindow):
else:
proc = subprocess.Popen(
("co", "-p", archive_base), stdout=subprocess.PIPE
("co", "-p", archive_base), stdout=subprocess.PIPE,
stderr = subprocess.PIPE )
status = proc.wait()
message = "\n".join(proc.stderr.readlines())