mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
Use the object, not the tuple
This commit is contained in:
@@ -133,7 +133,7 @@ def import_eve_character_func(character_id, api_key=None, user_id=None, logger=l
|
|||||||
EVEPlayerCharacterSkill.objects.filter(character=pchar).update(in_training=0)
|
EVEPlayerCharacterSkill.objects.filter(character=pchar).update(in_training=0)
|
||||||
if int(queuedoc['skillInTraining']):
|
if int(queuedoc['skillInTraining']):
|
||||||
skillobj, created = EVESkill.objects.get_or_create(id=queuedoc['trainingTypeID'])
|
skillobj, created = EVESkill.objects.get_or_create(id=queuedoc['trainingTypeID'])
|
||||||
charskillobj = EVEPlayerCharacterSkill.objects.get_or_create(skill=skillobj, character=pchar)
|
charskillobj, created = EVEPlayerCharacterSkill.objects.get_or_create(skill=skillobj, character=pchar)
|
||||||
charskillobj.in_training = queuedoc['trainingToLevel']
|
charskillobj.in_training = queuedoc['trainingToLevel']
|
||||||
charskillobj.save()
|
charskillobj.save()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user