mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Fix typo
This commit is contained in:
@@ -99,7 +99,7 @@ def import_corp_details_func(corp_id, log=logging.getLogger(__name__)):
|
||||
corpobj.alliance, created = EVEPlayerAlliance.objects.get_or_create(id=d['allianceID'])
|
||||
|
||||
# Skip looking up the CEOs for NPC corps and ones with no CEO defined (dead corps)
|
||||
if corp_id > 1000182 int(d['ceoID']) > 1:
|
||||
if corp_id > 1000182 and int(d['ceoID']) > 1:
|
||||
import_eve_character.delay(d['ceoID'], callback=link_ceo.subtask(corporation=corpobj.id))
|
||||
else:
|
||||
corpobj.ceo_character = None
|
||||
|
||||
Reference in New Issue
Block a user