We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0814d2 commit 35263ddCopy full SHA for 35263dd
browserstack/local.py
@@ -54,9 +54,9 @@ def start(self, **kwargs):
54
os.system('echo "" > "'+ self.local_logfile_path +'"')
55
try:
56
if out:
57
- data = json.loads(out)
+ data = json.loads(out.decode())
58
else:
59
- data = json.loads(err)
+ data = json.loads(err.decode())
60
61
if data['state'] != "connected":
62
raise BrowserStackLocalError(data["message"])
0 commit comments