Skip to content

Commit

Permalink
Bugfix - filename for announcement was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
richbeales committed Apr 18, 2023
1 parent 88ebebf commit 3ebe125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpt/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ebe125

Please sign in to comment.