mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-11 23:18:22 +08:00
Fix: blank case in auto-run config
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user