mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-16 17:27: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:
|
elif State.deploy_config.Run:
|
||||||
# TODO: refactor poor_yaml_read() to support list
|
# TODO: refactor poor_yaml_read() to support list
|
||||||
tmp = State.deploy_config.Run.split(",")
|
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
|
instances: List[str] = runs
|
||||||
|
|
||||||
logger.hr("Webui configs")
|
logger.hr("Webui configs")
|
||||||
|
|||||||
Reference in New Issue
Block a user