Skip to content

Commit

Permalink
follow redirects from github
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Sep 18, 2024
1 parent 77949dd commit d57693e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trimesh/resolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def fetch() -> bytes:
"""
import httpx

response = httpx.get(self.url)
response = httpx.get(self.url, follow_redirects=True)
response.raise_for_status()
return response.content

Expand Down

0 comments on commit d57693e

Please sign in to comment.