Skip to content

Commit ec45056

Browse files
authored
Merge pull request #32 from grahamhome/key-flag-fix
Add -k flag
2 parents a423a83 + ba7718f commit ec45056

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browserstack/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __xstr(self, key, value):
1717
return ['-' + key, value]
1818

1919
def _generate_cmd(self):
20-
cmd = [self.binary_path, '-d', 'start', '-logFile', self.local_logfile_path, self.key]
20+
cmd = [self.binary_path, '-d', 'start', '-logFile', self.local_logfile_path, "-k", self.key]
2121
for o in self.options.keys():
2222
if self.options.get(o) is not None:
2323
cmd = cmd + self.__xstr(o, self.options.get(o))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
setup(
66
name = 'browserstack-local',
77
packages = ['browserstack'],
8-
version = '1.2.2',
8+
version = '1.2.3',
99
description = 'Python bindings for Browserstack Local',
1010
author = 'BrowserStack',
1111
author_email = '[email protected]',

0 commit comments

Comments
 (0)