Merge pull request #10 from koterpillar/patch-1

Do not pass open file descriptors to Xvfb
This commit is contained in:
Corey Goldberg 2015-12-27 11:04:29 -08:00
commit f946e438b7
1 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,8 @@ class Xvfb:
with open(os.devnull, 'w') as fnull:
self.proc = subprocess.Popen(self.xvfb_cmd,
stdout=fnull,
stderr=fnull)
stderr=fnull,
close_fds=True)
time.sleep(0.2) # give Xvfb time to start
ret_code = self.proc.poll()
if ret_code is None: