hello i added a few minutes cool-down for commands its working fine. but for some commands i added few hours cool-down but it showing 900 minutes and 30 seconds. so how to make below code to show hours, minutes and seconds.
elif isinstance(error, commands.CommandOnCooldown):
m, s = divmod(error.retry_after, 60)
fmt = "Try again in {} minutes and {} seconds" \
.format(round(m), round(s))
try:
await bot.send_message(ctx.message.channel, fmt)
except discord.Forbidden:
pass