1
0
Fork 0
mirror of synced 2024-06-29 03:30:57 +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!") await self.bot.say("There are currently no raffles setup on this server!")
return return
fmt = "\n\n".join("**Raffle:** {}\n**Title:** {}\n**Total Entrants:** {}\n**Ends:** {}".format( fmt = "\n\n".join("**Raffle:** {}\n**Title:** {}\n**Total Entrants:** {}\n**Ends:** {} UTC".format(
num, num + 1,
raffle['title'], raffle['title'],
len(raffle['entrants']), len(raffle['entrants']),
raffle['expires']) for num, raffle in enumerate(raffles)) raffle['expires']) for num, raffle in enumerate(raffles))