Skip to content

Commit

Permalink
Use colorama
Browse files Browse the repository at this point in the history
  • Loading branch information
tekulvw committed May 21, 2018
1 parent bb0a8c9 commit 1090634
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion redbot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import sys
import discord
from colorama import init, Fore

init()
# Let's do all the dumb version checking in one place.

if discord.version_info.major < 1:
Expand All @@ -12,8 +14,9 @@
sys.exit(1)

if sys.version_info < (3, 6, 0):
print(Fore.RED + "[DEPRECATION WARNING]")
print(
"[DEPRECATION WARNING]\nYou are currently running Python 3.5."
Fore.RED + "You are currently running Python 3.5."
" Support for Python 3.5 will end with the release of beta 16."
" Please update your environment to Python 3.6 as soon as possible to avoid"
" any interruptions after the beta 16 release.",
Expand Down

0 comments on commit 1090634

Please sign in to comment.