mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 17:36:15 +00:00
Rewrite gateway to use aiohttp instead of websockets
This commit is contained in:
@ -31,7 +31,6 @@ from pathlib import Path
|
||||
import discord
|
||||
import pkg_resources
|
||||
import aiohttp
|
||||
import websockets
|
||||
import platform
|
||||
|
||||
def show_version():
|
||||
@ -46,7 +45,6 @@ def show_version():
|
||||
entries.append(' - discord.py pkg_resources: v{0}'.format(pkg.version))
|
||||
|
||||
entries.append('- aiohttp v{0.__version__}'.format(aiohttp))
|
||||
entries.append('- websockets v{0.__version__}'.format(websockets))
|
||||
uname = platform.uname()
|
||||
entries.append('- system info: {0.system} {0.release} {0.version}'.format(uname))
|
||||
print('\n'.join(entries))
|
||||
|
Reference in New Issue
Block a user