Browse Source

[master] Don't buffer anything in Popen()

Mukund Sivaraman 11 years ago
parent
commit
18f8355aae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/lettuce/features/terrain/terrain.py

+ 1 - 1
tests/lettuce/features/terrain/terrain.py

@@ -135,7 +135,7 @@ class RunningProcess:
         """
         stderr_write = open(self.stderr_filename, "w")
         stdout_write = open(self.stdout_filename, "w")
-        self.process = subprocess.Popen(args, 1, None, subprocess.PIPE,
+        self.process = subprocess.Popen(args, 0, None, subprocess.PIPE,
                                         stdout_write, stderr_write)
         # open them again, this time for reading
         self.stderr = open(self.stderr_filename, "r")