Fix XML export

This commit is contained in:
blitzmann
2015-01-17 13:41:49 -05:00
parent e520758334
commit 3a9e1f8b85
2 changed files with 9 additions and 5 deletions

View File

@@ -760,7 +760,7 @@ class Fit(object):
fit = eos.db.getFit(fitID)
return Port.exportDna(fit)
def exportXml(self, callback = None, *fitIDs):
def exportXml(self, callback=None, *fitIDs):
fits = map(lambda fitID: eos.db.getFit(fitID), fitIDs)
return Port.exportXml(callback, *fits)