From 152b61aabb33bb13dae54a3f63e4e97aae81aa6e Mon Sep 17 00:00:00 2001 From: IAmTomahawkx Date: Thu, 2 Sep 2021 12:49:38 -0700 Subject: [PATCH] fix recursionerror caused by a Pull Request --- discord/embeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/embeds.py b/discord/embeds.py index 41f2be40..52d71ef4 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -465,7 +465,7 @@ class Embed: @thumbnail.deleter def thumbnail(self): try: - del self.thumbnail + del self._thumbnail except AttributeError: pass