From ed63c1bfb2796844ef61e68826ddff10571f617b Mon Sep 17 00:00:00 2001 From: Callan Barrett Date: Thu, 23 Apr 2015 01:26:17 +0800 Subject: [PATCH] Clear unneeded logging --- starcheat/assets.py | 1 - starcheat/gui/quests.py | 1 - 2 files changed, 2 deletions(-) diff --git a/starcheat/assets.py b/starcheat/assets.py index a6fa056..1e385af 100644 --- a/starcheat/assets.py +++ b/starcheat/assets.py @@ -601,7 +601,6 @@ def get_item(self, name): Find the first hit in the DB for a given item name, return the parsed asset file and location. """ - logging.debug("Lookup item: " + name) c = self.assets.db.cursor() c.execute("select key, path, desc from assets where type = 'item' and name = ?", (name,)) meta = c.fetchone() diff --git a/starcheat/gui/quests.py b/starcheat/gui/quests.py index 3882c2c..969517f 100644 --- a/starcheat/gui/quests.py +++ b/starcheat/gui/quests.py @@ -15,7 +15,6 @@ def make_quest_info(name, data): """Return an HTML summary of a quest from its data.""" - print(data) info = "" info += "%s
" % name info += "%s

" % text_to_html(data["title"])