diff options
| -rw-r--r-- | discord/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/client.py b/discord/client.py index 9fdc8cf2..93679244 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1965,6 +1965,9 @@ class Client: fields['owner_id'] = fields['owner'].id + if 'region' in fields: + fields['region'] = str(fields['region']) + yield from self.http.edit_server(server.id, **fields) @asyncio.coroutine |