mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-03 04:22:09 +08:00
plotjuggler: fix layout param (#23348)
old-commit-hash: 92b553be3ea0c4309961647a796dbdde3da5fdf6
This commit is contained in:
@@ -66,12 +66,12 @@ def start_juggler(fn=None, dbc=None, layout=None):
|
||||
|
||||
extra_args = ""
|
||||
if fn is not None:
|
||||
extra_args += f"-d {fn}"
|
||||
extra_args += f" -d {fn}"
|
||||
if layout is not None:
|
||||
extra_args += f"-l {layout}"
|
||||
extra_args += f" -l {layout}"
|
||||
|
||||
subprocess.call(f'plotjuggler --plugin_folders {INSTALL_DIR} {extra_args}',
|
||||
shell=True, env=env, cwd=juggle_dir)
|
||||
cmd = f'plotjuggler --plugin_folders {INSTALL_DIR}{extra_args}'
|
||||
subprocess.call(cmd, shell=True, env=env, cwd=juggle_dir)
|
||||
|
||||
|
||||
def juggle_route(route_name, segment_number, segment_count, qlog, can, layout):
|
||||
|
||||
Reference in New Issue
Block a user