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