Fixed discord py outdated exception

This commit is contained in:
cloudwithax 2022-07-05 05:19:58 -04:00
parent 8928b7b6f2
commit 6a0765d712
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ if not discord.__version__.startswith("2.0"):
pass pass
raise DiscordPyOutdated( raise DiscordPyOutdated(
"You must have discord.py 2.0 or a discord.py fork that uses the 'discord' namespace " "You must have discord.py 2.0 to use this library. "
"(a.k.a: you import the libary using 'import discord') to use this library. " "Uninstall your current version and install discord.py 2.0 "
"Uninstall your current version and install discord.py 2.0 or a compatible fork." "using 'pip install git+https://github.com/Rapptz/discord.py@master'"
) )
__version__ = "1.1.7b" __version__ = "1.1.7b"