-
Notifications
You must be signed in to change notification settings - Fork 293
Commit d638cb5
authored
httpx does not follow redirects by default.
The old URL's now have a redirect. For example the URL `https://talkpython.fm/270` is redirected to `https://talkpython.fm/episodes/show/270/python-in-supply-chains-oil-rigs-rockets-and-lettuce`. By default httpx does not follow redirects. To enable redirect's we need to add the follow_redirects=True flag to the httpx.get call.1 parent ce0a09a commit d638cb5
1 file changed
+1
-1
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 | - | ||
19 | + | ||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
|
0 commit comments