Fix 404s with Client.pins_from and Client.create_role.

This commit is contained in:
Rapptz
2017-01-12 17:59:41 -05:00
parent 89eb3392af
commit 9626210633
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2016 Rapptz'
__version__ = '0.16.2'
__version__ = '0.16.3'
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=2, releaselevel='final', serial=0)
version_info = VersionInfo(major=0, minor=16, micro=3, releaselevel='final', serial=0)
try:
from logging import NullHandler