Fix typing module for 3.5.1 (#1080)

This commit is contained in:
Will
2017-11-07 17:15:47 -05:00
committed by palmtree5
parent 1ef62b5e32
commit 46e37d5ff5
2 changed files with 15 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
import sys
import typing
import discord
# Let's do all the dumb version checking in one place.
if sys.version_info < (3, 5, 2):
typing.TYPE_CHECKING = False
if discord.version_info.major < 1:
print("You are not running the rewritten version of discord.py.\n\n"
"In order to use Red v3 you MUST be running d.py version"
" >= 1.0.0.")
sys.exit(1)