Include timestamp as info for fits

This commit is contained in:
HomeWorld
2010-10-30 23:09:35 +03:00
parent 5af209d1e2
commit a1ea23683d
2 changed files with 2 additions and 2 deletions

View File

@@ -188,7 +188,7 @@ class ShipBrowser(wx.Panel):
self._stage3ShipName = shipName
self._stage3Data = shipID
for ID, name in fitList:
for ID, name, timestamp in fitList:
self.lpane.AddWidget(FitItem(self.lpane, ID, (shipName, name),shipID))
self.lpane.RefreshList()

View File

@@ -50,7 +50,7 @@ class Fit(object):
fits = eos.db.getFitsWithShip(id)
names = []
for fit in fits:
names.append((fit.ID, fit.name))
names.append((fit.ID, fit.name, fit.timestamp))
return names