From: Kenneth Reitz Date: Sun, 18 Sep 2011 05:32:00 +0000 (-0400) Subject: kill AuthenticationError X-Git-Tag: v0.8.0~94^2~82 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d38f518348625cc9c6b8f5ee63a86bda784630e;p=services%2Fpython-requests.git kill AuthenticationError --- diff --git a/requests/exceptions.py b/requests/exceptions.py index f6585f4..c7aeca6 100644 --- a/requests/exceptions.py +++ b/requests/exceptions.py @@ -10,9 +10,6 @@ class RequestException(Exception): """There was an ambiguous exception that occured while handling your request.""" -class AuthenticationError(RequestException): - """The authentication credentials provided were invalid.""" - class Timeout(RequestException): """The request timed out."""