From d2513a920e63ce58e8b0c2dfe572b1998f5a06bb Mon Sep 17 00:00:00 2001 From: meshkatshb Date: Tue, 14 Jan 2025 18:12:03 +0330 Subject: [PATCH] hotfix: exception handling missing a value --- webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 0cdde53..bc73c40 100644 --- a/webui.py +++ b/webui.py @@ -287,7 +287,7 @@ async def run_org_agent( import traceback traceback.print_exc() errors = str(e) + "\n" + traceback.format_exc() - return '', errors, '', '', None + return '', errors, '', '', None, None finally: # Handle cleanup based on persistence configuration if not keep_browser_open: