From f802b3d85f7de764639493dee671e94ff07d0fc6 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 2 Dec 2010 16:12:01 +0000 Subject: [PATCH] Remove wait on character update --- eve_api/tasks/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eve_api/tasks/account.py b/eve_api/tasks/account.py index a8019d9..497b836 100644 --- a/eve_api/tasks/account.py +++ b/eve_api/tasks/account.py @@ -110,7 +110,7 @@ def import_apikey_func(api_userid, api_key, user=None, force_cache=False): # Process the account's character list charlist = account.characters.all().values_list('id', flat=True) for char in doc['result']['characters']: - import_eve_character.delay(char['characterID'], api_key, api_userid, callback=link_char_to_account.subtask(account=account.id)).wait() + import_eve_character.delay(char['characterID'], api_key, api_userid, callback=link_char_to_account.subtask(account=account.id)) return account