From b88562c5c5dc76642cd553492413ec5fd12fc00d Mon Sep 17 00:00:00 2001
From: Rapptz <rapptz@gmail.com>
Date: Wed, 13 Jan 2016 23:13:54 -0500
Subject: [PATCH] Fix warning message.

---
 discord/__init__.py | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/discord/__init__.py b/discord/__init__.py
index c3ee01fc5..bb68998f1 100644
--- a/discord/__init__.py
+++ b/discord/__init__.py
@@ -36,14 +36,15 @@ from . import utils
 import logging
 import warnings
 
-
-warnings.warn(
-"""
-The next version of discord.py(v0.10.0) will have major breaking changes
+_warning_message = """
+The next major version of discord.py (v0.10.0) will have major breaking changes
 that will require updating/changing your code.
+Please check the migrating guide to alleviate yourself of unexpected issues.
 http://discordpy.readthedocs.org/en/latest/migrating.html
-It is stongly recommended to make the switch as soon as possible.
-""", Warning)
+It is strongly recommended to make the switch as soon as possible.
+"""
+
+warnings.warn(_warning_message, UserWarning)
 
 try:
     from logging import NullHandler