Skip to content

Commit

Permalink
Clear unneeded logging
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzomafizzo committed Apr 22, 2015
1 parent cf425f3 commit ed63c1b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion starcheat/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
1 change: 0 additions & 1 deletion starcheat/gui/quests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

def make_quest_info(name, data):
"""Return an HTML summary of a quest from its data."""
print(data)
info = ""
info += "<b>%s</b><br>" % name
info += "%s<br><br>" % text_to_html(data["title"])
Expand Down

0 comments on commit ed63c1b

Please sign in to comment.