diff options
Diffstat (limited to 'etc/start_servo.py')
-rw-r--r-- | etc/start_servo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/start_servo.py b/etc/start_servo.py index 9954d3ab091..a3815e0dc1a 100644 --- a/etc/start_servo.py +++ b/etc/start_servo.py @@ -19,6 +19,6 @@ def start_servo(port, resolution): # Use the below command if you are running this script on windows # cmds = 'mach.bat run --webdriver ' + port + ' --resolution ' + resolution - cmds = './mach run --webdriver ' + port + ' --resolution ' + resolution + cmds = './mach run --webdriver=' + port + ' --resolution ' + resolution process = subprocess.Popen(cmds, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) return process |