1
0
Fork 0
mirror of synced 2024-06-11 07:04:36 +12:00

Added time zone to when the entry will end; added one to the Raffle 'ID'

This commit is contained in:
Phxntxm 2016-10-10 22:14:45 -05:00
parent ae6cfe57ed
commit 3193ba8add

View file

@ -25,8 +25,8 @@ class Raffle:
await self.bot.say("There are currently no raffles setup on this server!")
return
fmt = "\n\n".join("**Raffle:** {}\n**Title:** {}\n**Total Entrants:** {}\n**Ends:** {}".format(
num,
fmt = "\n\n".join("**Raffle:** {}\n**Title:** {}\n**Total Entrants:** {}\n**Ends:** {} UTC".format(
num + 1,
raffle['title'],
len(raffle['entrants']),
raffle['expires']) for num, raffle in enumerate(raffles))