Fix bug with Client.move_channel and Client.move_role.

This commit is contained in:
Rapptz
2017-01-16 18:13:49 -05:00
parent 793cbedd0d
commit 5a6a3574b1
3 changed files with 12 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2016 Rapptz'
__version__ = '0.16.3'
__version__ = '0.16.4'
from .client import Client, AppInfo, ChannelPermissions
from .user import User
@@ -43,7 +43,7 @@ import logging
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(major=0, minor=16, micro=3, releaselevel='final', serial=0)
version_info = VersionInfo(major=0, minor=16, micro=4, releaselevel='final', serial=0)
try:
from logging import NullHandler