From 9b5e57692b6316013c2ea64a3fee093e226642b3 Mon Sep 17 00:00:00 2001 From: Leonid R Date: Fri, 25 Mar 2016 23:38:37 +0400 Subject: [PATCH] Fixed spelling in errors.py --- apns2/errors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apns2/errors.py b/apns2/errors.py index 0cd6ec8..6caaca3 100644 --- a/apns2/errors.py +++ b/apns2/errors.py @@ -3,12 +3,12 @@ class APNsException(Exception): class InternalException(APNsException): - """This exception should not thrown. If it is, please report this bug""" + """This exception should not be raised. If it is, please report this as a bug.""" pass class BadPayloadException(APNsException): - """Something bad with payload""" + """Something bad with the payload.""" pass