Remove debug output

This commit is contained in:
cncfanatics
2010-10-15 10:01:07 +02:00
parent 3e356279a9
commit 39a85c552d

View File

@@ -23,16 +23,13 @@ import eos.db
class PrefetchThread(threading.Thread):
def run(self):
print "preload"
# We're a daemon thread, as such, interpreter might get shut down while we do stuff
# Make sure we don't throw tracebacks to console
try:
eos.db.getItemsByCategory("Skill", eager=("effects", "attributes", "attributes.info.icon", "icon"))
print "skill"
cMarket = service.Market.getInstance()
root = cMarket.getShipRoot()
for id, _ in root:
print id
cMarket.getShipList(id)
except:
return