fwgdb: import servo_parsing (new name) instead of multiservo
Changing mutliservo to servo_parsing has caused this script to import a
now non-existent library. This should fix the issue (as the underlying
functions have not changed)
BUG=chromium:893389
TEST=None yet
Change-Id: I03a271b53711905c28f0e87a86dca60ecf9477a2
Signed-off-by: Ruben Rodriguez Buchillon <coconutruben@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1270315
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
diff --git a/scripts/fwgdb.py b/scripts/fwgdb.py
index f8d772d..3158ef1 100644
--- a/scripts/fwgdb.py
+++ b/scripts/fwgdb.py
@@ -25,7 +25,7 @@
# pylint: disable=import-error
from servo import client
-from servo import multiservo
+from servo import servo_parsing
from servo import terminal_freezer
# pylint: enable=import-error
@@ -66,16 +66,16 @@
'multiple times)')
parser.add_argument('-n', '--servod-name', dest='name')
- parser.add_argument('--servod-rcfile', default=multiservo.DEFAULT_RC_FILE)
+ parser.add_argument('--servod-rcfile', default=servo_parsing.DEFAULT_RC_FILE)
parser.add_argument('--servod-server')
parser.add_argument('-p', '--servod-port', type=int, dest='port')
parser.add_argument('-t', '--tty',
help='TTY file to connect to (defaults to cpu_uart_pty)')
opts = parser.parse_args(argv)
- multiservo.get_env_options(logging, opts)
+ servo_parsing.get_env_options(logging, opts)
if opts.name:
- rc = multiservo.parse_rc(logging, opts.servod_rcfile)
+ rc = servo_parsing.parse_rc(logging, opts.servod_rcfile)
if opts.name not in rc:
raise parser.error('%s not in %s' % (opts.name, opts.servod_rcfile))
if not opts.servod_server: