fix(transfer): missing closing brace in except block

This commit is contained in:
yumoqing 2026-07-17 13:37:48 +08:00
parent 6d4dace412
commit 0453eed500

View File

@ -88,5 +88,5 @@ try:
}}
except Exception as e:
exception(f'transfer_check.dspy error: {e}')
return {"widgettype": "Message", "options": {"timeout": 5, "title": "错误", "message": f"处理失败: {e}"}
exception('transfer_check.dspy error: ' + str(e))
return {"widgettype": "Message", "options": {"timeout": 5, "title": "错误", "message": "处理失败: " + str(e)}}