Index: subprocess2.py |
diff --git a/subprocess2.py b/subprocess2.py |
index 4708aadf362ee347cf3d6528acc3c9007c917208..afe5c75c17122b289c1a36acf1c8ddeeb3d28ca3 100644 |
--- a/subprocess2.py |
+++ b/subprocess2.py |
@@ -246,7 +246,7 @@ def communicate(args, timeout=None, **kwargs): |
time.sleep(0.001) |
# Now that the process died, reset the cursor and read the file. |
buff.seek(0) |
- out = [buff.read(), None] |
+ out = (buff.read(), None) |
return out, proc.returncode |