We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da73b67 commit 3fffe94Copy full SHA for 3fffe94
apps/10_movie_search/final/movie_svc.py
@@ -12,7 +12,7 @@ def find_movies(search_text):
12
raise ValueError("Search text is required")
13
14
# This URL changed since the recording to support SSL.
15
- url = 'http://movieservice.talkpython.fm/api/search/{}'.format(search_text)
+ url = 'https://movieservice.talkpython.fm/api/search/{}'.format(search_text)
16
17
resp = requests.get(url)
18
resp.raise_for_status()
0 commit comments