From 4933e916bb64a23e66e262bb203d23874419122e Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Sun, 19 Sep 2010 10:23:56 +0200 Subject: [PATCH] Remove debug code --- service/prefetch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/service/prefetch.py b/service/prefetch.py index 940558034..c9975d96a 100755 --- a/service/prefetch.py +++ b/service/prefetch.py @@ -23,12 +23,10 @@ import eos.db class PrefetchThread(threading.Thread): def run(self): - print "skillList" eos.db.getItemsByCategory("Skill", eager=("effects", "attributes")) cMarket = service.Market.getInstance() root = cMarket.getShipRoot() for id, _ in root: - print "id" cMarket.getShipList(id) prefetch = PrefetchThread()