Fixed a little mistake in service.character.apiFetch

This commit is contained in:
HomeWorld
2011-12-23 20:30:32 +02:00
parent 6b30eeaba1
commit 5d2519ec18

View File

@@ -133,9 +133,8 @@ class Character():
return None
def apiFetch(self, charID, charName):
char = eos.db.getCharacter(charID, proxy = self.getProxySettings())
char.apiFetch(charName)
char = eos.db.getCharacter(charID)
char.apiFetch(charName, proxy = self.getProxySettings())
eos.db.commit()
def changeLevel(self, charID, skillID, level):