From 2f66d0d06c65b8f732972f491af853cbd377efae Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 26 Dec 2023 02:35:42 +0900 Subject: [PATCH] Update webhook_manager.py occured -> occurred --- superagi/helper/webhook_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superagi/helper/webhook_manager.py b/superagi/helper/webhook_manager.py index aa7a1fb19..22dc8f552 100644 --- a/superagi/helper/webhook_manager.py +++ b/superagi/helper/webhook_manager.py @@ -27,7 +27,7 @@ def agent_status_change_callback(self, agent_execution_id, curr_status, old_stat try: request = requests.post(webhook_obj.url.strip(), data=json.dumps(webhook_obj_body), headers=webhook_obj.headers) except Exception as e: - logger.error(f"Exception occured in webhooks {e}") + logger.error(f"Exception occurred in webhooks {e}") error=str(e) if request is not None and request.status_code not in [200,201] and error is None: error=request.text