From 9e70c54891909810ca7f82f578723829a2f04fae Mon Sep 17 00:00:00 2001 From: andrei Date: Fri, 18 Aug 2017 18:34:47 -0700 Subject: [PATCH] [guilds] GuildBan.reason should use text not unicode xD --- 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 474e26a..3b0d84b 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(unicode) + reason = Field(text) class GuildMember(SlottedModel):