mirror of
https://github.com/servo/servo.git
synced 2025-08-29 09:08:20 +01:00
Fix ServoDriver is_alive method
Update MANIFEST.json
This commit is contained in:
parent
2a7862540c
commit
78c2781891
2 changed files with 2 additions and 4 deletions
|
@ -166,9 +166,7 @@ class ServoWebDriverBrowser(Browser):
|
|||
command=" ".join(self.command))
|
||||
|
||||
def is_alive(self):
|
||||
if self.runner:
|
||||
return self.runner.is_running()
|
||||
return False
|
||||
return self.proc.poll() is None
|
||||
|
||||
def cleanup(self):
|
||||
self.stop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue