From e3631ade4ccc53fd5298c559fefcde01c875cc55 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 13 Apr 2019 18:13:53 -0400 Subject: [PATCH] Fix attribute error in Widget.__repr__ --- discord/widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/widget.py b/discord/widget.py index 8d55801ee..59e6a82f0 100644 --- a/discord/widget.py +++ b/discord/widget.py @@ -208,7 +208,7 @@ class Widget: return self.id == other.id def __repr__(self): - return ''.format(self) + return ''.format(self) @property def created_at(self):