Skip to content

Commit 3fffe94

Browse files
authored
Movie Search: This URL changed since the recording to support SSL.
1 parent da73b67 commit 3fffe94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/10_movie_search/final/movie_svc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def find_movies(search_text):
1212
raise ValueError("Search text is required")
1313

1414
# This URL changed since the recording to support SSL.
15-
url = 'http://movieservice.talkpython.fm/api/search/{}'.format(search_text)
15+
url = 'https://movieservice.talkpython.fm/api/search/{}'.format(search_text)
1616

1717
resp = requests.get(url)
1818
resp.raise_for_status()

0 commit comments

Comments
 (0)