diff --git a/librespot/audio/__init__.py b/librespot/audio/__init__.py index e8199e2..e600470 100644 --- a/librespot/audio/__init__.py +++ b/librespot/audio/__init__.py @@ -386,7 +386,7 @@ class AudioKeyManager(PacketsReceiver, Closeable): if isinstance(country, str): if AudioKeyManager._spoticlub_current_country != country: AudioKeyManager._spoticlub_current_country = country - print(f"[SpotiClub API] Received {country} as the download country\n\n") + print(f"\n\n[SpotiClub API] Received {country} as the download country\n\n") new_serial = data.get("client_serial") if isinstance(new_serial, str) and new_serial: diff --git a/librespot/core.py b/librespot/core.py index 7c65b3a..1e5f233 100644 --- a/librespot/core.py +++ b/librespot/core.py @@ -33,6 +33,7 @@ from Cryptodome.Signature import PKCS1_v1_5 from librespot import util from librespot import Version +from librespot.oauth import OAuth from librespot.audio import AudioKeyManager from librespot.audio import CdnManager from librespot.audio import PlayableContentFeeder