mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-14 07:08: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…
x
Reference in New Issue
Block a user