diff --git a/librespot/oauth.py b/librespot/oauth.py index 2540f0c..1d5ecdc 100644 --- a/librespot/oauth.py +++ b/librespot/oauth.py @@ -105,7 +105,7 @@ class OAuth: self.send_response(200) self.send_header('Content-type', 'text/html') self.end_headers() - success_page = self.server.success_page_content or "librespot-python received callback" + success_page = self.server.success_page_content or "Spotify authorization successful! You can now close this window and return to your client's window." self.wfile.write(success_page.encode('utf-8')) pass