From de43adbc1192ce4595902e7d7e481a7c001d3733 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 6 Jan 2011 11:12:59 +0000 Subject: [PATCH] Fix stupid typo --- eve_api/api_exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eve_api/api_exceptions.py b/eve_api/api_exceptions.py index edfb0a3..3f46dbb 100644 --- a/eve_api/api_exceptions.py +++ b/eve_api/api_exceptions.py @@ -15,7 +15,7 @@ class APINoUserIDException(Exception): def __str__(self): return "This query requires a valid userID, but yours is either missing or invalid." -class APIAccessException(Exception) +class APIAccessException(Exception): """ Raised on Access errors of any kind, network and EVE API failures """