Skip to content

Commit

Permalink
convert print to debug statement >.<
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Apr 11, 2017
1 parent 4e74555 commit 50e604f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eos/gamedata.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def price(self):
db_price = eos.db.getPrice(self.ID)
# do not yet have a price in the database for this item, create one
if db_price is None:
print "Creating a price for {}".format(self.ID)
pyfalog.debug("Creating a price for {}".format(self.ID))
self.__price = types_Price(self.ID)
eos.db.add(self.__price)
eos.db.commit()
Expand Down

0 comments on commit 50e604f

Please sign in to comment.