diff options
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 9bff27b..c512da2 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -409,7 +409,7 @@ class Utils(commands.Cog): await ctx.send( str( timedelta(seconds=end_sec - start_sec + - round((frames / framerate), 3))).replace('000', '')) + round((int(frames) / int(framerate)), 3))).replace('000', '')) def setup(bot): |