From e984b51e496a89c17811aaa1c1f9032fa43ce501 Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Wed, 29 Oct 2014 14:02:16 +0000 Subject: [PATCH] Host test plugins: removed usused extra_baud parameter from serial port initialization --- workspace_tools/host_tests/host_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/host_tests/host_test.py b/workspace_tools/host_tests/host_test.py index 1ec542ebc6..9b70082d00 100644 --- a/workspace_tools/host_tests/host_test.py +++ b/workspace_tools/host_tests/host_test.py @@ -100,7 +100,7 @@ class Mbed: self.timeout = self.DEFAULT_TOUT if self.options.timeout is None else self.options.timeout print 'Host test instrumentation on port: "%s" and disk: "%s"' % (self.port, self.disk) - def init_serial(self, baud=9600, extra_baud=9600): + def init_serial(self, baud=9600): """ Initialize serial port. Function will return error is port can't be opened or initialized """ result = True