From 44970c3348f4242be4dbadadf1d08ff5242918da Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 26 Dec 2020 18:47:11 +1100 Subject: [PATCH] docs: fix simple typo, retrival -> retrieval (#629) There is a small typo in spotipy/oauth2.py. Should read `retrieval` rather than `retrival`. --- spotipy/oauth2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotipy/oauth2.py b/spotipy/oauth2.py index 4adb76a..8c17636 100644 --- a/spotipy/oauth2.py +++ b/spotipy/oauth2.py @@ -1113,7 +1113,7 @@ class SpotifyImplicitGrant(SpotifyAuthBase): redirect_host, redirect_port = get_host_port(redirect_info.netloc) # Implicit Grant tokens are returned in a hash fragment # which is only available to the browser. Therefore, interactive - # URL retrival is required. + # URL retrieval is required. if (redirect_host in ("127.0.0.1", "localhost") and redirect_info.scheme == "http" and redirect_port): logger.warning('Using a local redirect URI with a '