diff options
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py index da301f8b..0ff3dbfc 100644 --- a/discord/http.py +++ b/discord/http.py @@ -339,7 +339,7 @@ class HTTPClient: def edit_channel(self, channel_id, **options): url = '{0.CHANNELS}/{1}'.format(self, channel_id) - valid_keys = ('name', 'topic', 'bitrate', 'user_limit') + valid_keys = ('name', 'topic', 'bitrate', 'user_limit', 'position') payload = { k: v for k, v in options.items() if k in valid_keys } |