Don't split string.
This commit is contained in:
parent
e1beb78bfe
commit
05dda652db
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ async def run(configs: list[dict], *, timeout: int, debug: bool):
|
||||||
for cfg in configs:
|
for cfg in configs:
|
||||||
cfg['filter'] = parse(cfg['filter'])
|
cfg['filter'] = parse(cfg['filter'])
|
||||||
p = cfg['program']
|
p = cfg['program']
|
||||||
if isinstance(p, collections.abc.Iterable):
|
if isinstance(p, collections.abc.Iterable) and not isinstance(p, str):
|
||||||
p = ' '.join(p)
|
p = ' '.join(p)
|
||||||
coroutines += [ipc.command(f'exec {p}')]
|
coroutines += [ipc.command(f'exec {p}')]
|
||||||
await asyncio.gather(*coroutines)
|
await asyncio.gather(*coroutines)
|
||||||
|
|
Loading…
Reference in a new issue