diff --git a/ChangeLog b/ChangeLog index 43fa267b5..7745df427 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2007-04-09 Brian Matherly + * src/plugins/Checkpoint.py: missing comma in Checkpoint.py. + 2007-04-08 Brian Matherly * src\Exporter.py * src\ReportBase\_FileEntry.py diff --git a/src/plugins/Checkpoint.py b/src/plugins/Checkpoint.py index 8ef8cb0d8..7e175612f 100644 --- a/src/plugins/Checkpoint.py +++ b/src/plugins/Checkpoint.py @@ -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())