From 3ebe125d3f81f4f933b088276d28e21c60210eca Mon Sep 17 00:00:00 2001 From: Richard Beales Date: Tue, 18 Apr 2023 22:16:11 +0100 Subject: [PATCH] Bugfix - filename for announcement was wrong --- autogpt/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt/utils.py b/autogpt/utils.py index 0e4ce5e9a5fa..0f52c060f967 100644 --- a/autogpt/utils.py +++ b/autogpt/utils.py @@ -45,7 +45,7 @@ def readable_file_size(size, decimal_places=2): def get_bulletin_from_web() -> str: try: response = requests.get( - "https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT/master/CONTRIBUTING.md" + "https://raw.githubusercontent.com/Significant-Gravitas/Auto-GPT/master/BULLETIN.md" ) if response.status_code == 200: return response.text