doublequotes over single

This commit is contained in:
Mike Edmister 2019-04-25 11:57:12 -04:00
parent f9927e9acb
commit b4b6d72607
1 changed files with 2 additions and 2 deletions

View File

@ -162,9 +162,9 @@ class StockPlay(ModuleBase):
WHERE nick != ? GROUP BY nick) h2
ON h1.nick = h2.nick AND h1.day = h2.MaxDate
ORDER BY cents DESC LIMIT 10""", (DUSTACCT, )).fetchall(), start=1):
total = Decimal(row['cents']) / 100
total = Decimal(row["cents"]) / 100
self.bot.act_PRIVMSG(replyto,
"{}: {} with total: ~${}".format(num, row['nick'], total), priority=5)
"{}: {} with total: ~${}".format(num, row["nick"], total), priority=5)
def do_trade(self, trade):
"""