Fix incorrect variable order

This commit is contained in:
blitzmann
2014-03-30 17:12:13 -04:00
parent 795724cbe1
commit e87ac96c6c
2 changed files with 2 additions and 2 deletions

View File

@@ -757,7 +757,7 @@ class ShipBrowser(wx.Panel):
sMarket = service.Market.getInstance()
sMarket.getShipListDelayed(self.stage2Callback, categoryID)
sMarket.getShipListDelayed(categoryID, self.stage2Callback)
self._stage2Data = categoryID

View File

@@ -51,7 +51,7 @@ class ShipBrowserWorkerThread(threading.Thread):
sMarket = Market.getInstance()
while True:
try:
callback, id = queue.get()
id, callback = queue.get()
set = cache.get(id)
if set is None:
set = sMarket.getShipList(id)