From 932282a691f3f8238c3e381bcafad013d8e93caa Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 3 Feb 2012 19:33:10 +0000 Subject: [PATCH] Fix typo in API handling code --- app/api/handlers/v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/handlers/v1.py b/app/api/handlers/v1.py index bffe2c4..2dd59c5 100644 --- a/app/api/handlers/v1.py +++ b/app/api/handlers/v1.py @@ -132,7 +132,7 @@ class EveAPIHandler(BaseHandler): s = EVEAccount.objects.filter(characters__corporation__alliance__id=request.GET['allianceid']) if s: - return {'keys': s.values('api_user_id', 'user_id', 'api_status', 'api_ketype', 'api_last_updated')} + return {'keys': s.values('api_user_id', 'user_id', 'api_status', 'api_keytype', 'api_last_updated')} return {'keys': []}