Skip to content

Commit 70f76a5

Browse files
committed
fixes
1 parent baa2960 commit 70f76a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

browserstack/local.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_package_version(self):
5050
return version
5151

5252
def _generate_cmd(self):
53-
cmd = [self.binary_path, '-d', 'start', '-logFile', self.local_logfile_path, "-k", self.key, '--source', 'python:' + self.get_package_version(), '--bs-host "k8s-devlocal.bsstag.com"']
53+
cmd = [self.binary_path, '-d', 'start', '-logFile', self.local_logfile_path, "-k", self.key, '--source', 'python:' + self.get_package_version()]
5454
for o in self.options.keys():
5555
if self.options.get(o) is not None:
5656
cmd = cmd + self.__xstr(o, self.options.get(o))
@@ -102,7 +102,7 @@ def start(self, **kwargs):
102102
output_string = err.decode()
103103

104104
data = json.loads(output_string)
105-
print(">>> DATA : ", data)
105+
106106
if data['state'] != "connected":
107107
raise BrowserStackLocalError(data["message"]["message"])
108108
else:

0 commit comments

Comments
 (0)