Skip to content

Commit

Permalink
Merge branch 'main' into issue_1866
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak5598 authored Mar 2, 2024
2 parents 04541a1 + 232d6fa commit 4febd36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3426,7 +3426,7 @@ def handler500(request, exception=None):
def contributors_view(request, *args, **kwargs):
contributors_file_path = os.path.join(settings.BASE_DIR, "contributors.json")

with open(contributors_file_path, "r") as file:
with open(contributors_file_path, "r", encoding='utf-8') as file:
content = file.read()

contributors = json.loads(content)
Expand Down

0 comments on commit 4febd36

Please sign in to comment.