From 2be2d58c88adf7be10a175869384e8db510e19eb Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 10 Sep 2010 09:42:56 +0100 Subject: [PATCH] Removed debug statements --- eve_api/api_puller/accounts.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/eve_api/api_puller/accounts.py b/eve_api/api_puller/accounts.py index 2c56de2..4489ab3 100755 --- a/eve_api/api_puller/accounts.py +++ b/eve_api/api_puller/accounts.py @@ -173,10 +173,8 @@ def import_eve_character(api_key, user_id, character_id): # Check if the character is a director pchar.director = False roles = values.get('corporationRoles', None) - print roles if roles and len(roles): for r in roles: - print r if r['roleName'] == 'roleDirector': pchar.director = True break