From 44c880691e036d7cee75b8af5e8a2e26976337fb Mon Sep 17 00:00:00 2001 From: "Ilya (Marshal)" Date: Thu, 10 Nov 2022 23:34:01 +0100 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0=D0=B6=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=20=D0=BD=D0=B0=D1=85=D0=BE=D0=B6=D0=B4=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B8=20=D0=BD=D0=B5=D0=B8=D0=B7=D0=B2=D0=B5=D1=81?= =?UTF-8?q?=D1=82=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BF=D0=BE=D0=BB=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yandex_music/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yandex_music/base.py b/yandex_music/base.py index 05acac6..8f95e98 100644 --- a/yandex_music/base.py +++ b/yandex_music/base.py @@ -40,7 +40,7 @@ class YandexMusicObject: f'Found unknown fields received from API! Please copy warn message ' f'and send to {new_issue_by_template_url} (github issue), thank you!' ) - logger.warning(f'Type: {cls.__name__}; fields: {unknown_fields}') + logger.warning(f'Type: {cls.__module__}.{cls.__name__}; fields: {unknown_fields}') @classmethod def de_json(cls, data: dict, client: Optional['Client']) -> Optional[dict]: