Fix silly bug which broke ship browser

This commit is contained in:
DarkPhoenix
2011-04-24 01:29:55 +04:00
parent fb665de2f8
commit c76e6a06d4
2 changed files with 4 additions and 8 deletions

View File

@@ -53,8 +53,8 @@ class BoosterView(d.Display):
event.Skip()
return
cFit = service.Fit.getInstance()
fit = cFit.getFit(event.fitID)
sFit = service.Fit.getInstance()
fit = sFit.getFit(event.fitID)
stuff = fit.boosters if fit is not None else None