From 4f3c05486a2134b02e4dc2eb066cc8f44856878b Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 5 Mar 2017 20:50:51 -0600 Subject: [PATCH] Corrected syntax error --- cogs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/core.py b/cogs/core.py index 75fa3ae..54da886 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -343,7 +343,7 @@ class Core: await self.bot.say("A {} sided die? You know that's impossible right?".format(num)) return - nums = [random.SystemRandom().randint(1, num)) for i in range(0, int(dice)] + nums = [random.SystemRandom().randint(1, num)) for i in range(0, int(dice))] total = sum(nums) value_str = ", ".join("{}".format(x) for x in nums)