mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Fix: blank case in auto-run config
This commit is contained in:
parent
e776ae2964
commit
6e026e6b45
@ -1203,7 +1203,7 @@ def app():
|
||||
elif State.deploy_config.Run:
|
||||
# TODO: refactor poor_yaml_read() to support list
|
||||
tmp = State.deploy_config.Run.split(",")
|
||||
runs = [l.strip("['\"]") for l in tmp if len(l)]
|
||||
runs = [l.strip(" ['\"]") for l in tmp if len(l)]
|
||||
instances: List[str] = runs
|
||||
|
||||
logger.hr("Webui configs")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user