From 6a0765d712c98d7af69bd0de81345b85ba1af757 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 5 Jul 2022 05:19:58 -0400 Subject: [PATCH] Fixed discord py outdated exception --- pomice/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pomice/__init__.py b/pomice/__init__.py index 9c5aac2..0a64085 100644 --- a/pomice/__init__.py +++ b/pomice/__init__.py @@ -13,9 +13,9 @@ if not discord.__version__.startswith("2.0"): pass raise DiscordPyOutdated( - "You must have discord.py 2.0 or a discord.py fork that uses the 'discord' namespace " - "(a.k.a: you import the libary using 'import discord') to use this library. " - "Uninstall your current version and install discord.py 2.0 or a compatible fork." + "You must have discord.py 2.0 to use this library. " + "Uninstall your current version and install discord.py 2.0 " + "using 'pip install git+https://github.com/Rapptz/discord.py@master'" ) __version__ = "1.1.7b"