Commit 517bf1de authored by Tom Niget's avatar Tom Niget

Replace args by *args

parent 03768ca1
......@@ -215,7 +215,7 @@ class Popen(Subprocess):
def __enter__(self):
return self
def __exit__(self, exc_type, exc_val, exc_tb):
def __exit__(self, *args):
if self.stdin is not None:
self.stdin.close()
if self.stdout is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment