Skip to content
Snippets Groups Projects
Commit 59dc83ea authored by Richard Berger's avatar Richard Berger
Browse files

Fix resource leak

parent 62b7b69a
No related branches found
No related tags found
No related merge requests found
......@@ -304,6 +304,9 @@ class OutputCapture(object):
def __exit__(self, type, value, tracebac):
os.dup2(self.stdout, self.stdout_fd)
os.close(self.stdout)
os.close(self.stdout_pipe_read)
os.close(self.stdout_pipe_write)
# check if we have more to read from the pipe
def more_data(self, pipe):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment