Bugfix - filename for announcement was wrong

pull/2441/head
Richard Beales 2023-04-18 22:16:11 +01:00
parent 88ebebf74f
commit 3ebe125d3f
1 changed files with 1 additions and 1 deletions

View File

@ -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