From ae6434affb373838e7b074d3c128f324e919c289 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Thu, 1 Mar 2018 00:30:08 -0500 Subject: [PATCH] Fix issue with importing EVE API XML --- service/character.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/character.py b/service/character.py index 127e233bb..7001c8e8b 100644 --- a/service/character.py +++ b/service/character.py @@ -66,7 +66,7 @@ class CharacterImportThread(threading.Thread): with open(path, mode='r') as charFile: sheet = ParseXML(charFile) char = sCharacter.new(sheet.name + " (imported)") - sCharacter.apiUpdateCharSheet(char.ID, sheet.skills) + sCharacter.apiUpdateCharSheet(char.ID, sheet.skills, 0) except: # if it's not api XML data, try this # this is a horrible logic flow, but whatever