Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3287148

Browse filesBrowse files
committed
Fixed premature closing of stdout/stderr streams, which caused plenty of errors.
The lines were added in commit b38020a , and I might consider a patch release soon or get ready with 0.3.3. Lets hope not too many installations will be affected.
1 parent 598cd1d commit 3287148
Copy full SHA for 3287148

1 file changed

-2Lines changed: 0 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎git/cmd.py‎

Copy file name to clipboardExpand all lines: git/cmd.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ def wait(self):
106106
107107
:raise GitCommandError: if the return status is not 0"""
108108
status = self.proc.wait()
109-
self.proc.stdout.close()
110-
self.proc.stderr.close()
111109
if status != 0:
112110
raise GitCommandError(self.args, status, self.proc.stderr.read())
113111
# END status handling

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.