From 4b4508a75e5db954c11a773be8f253e9107871b4 Mon Sep 17 00:00:00 2001 From: andrei Date: Fri, 18 Aug 2017 18:34:09 -0700 Subject: [PATCH] [guild] GuildBan.reason should use unicode, not string --- disco/types/guild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/types/guild.py b/disco/types/guild.py index 572cd5d..474e26a 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -130,7 +130,7 @@ class Role(SlottedModel): class GuildBan(SlottedModel): user = Field(User) - reason = Field(str) + reason = Field(unicode) class GuildMember(SlottedModel):