From 111b068ed45b336e924f24edfa9a13c59875760f Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 20 Jun 2011 19:32:17 -0500 Subject: [PATCH] Dice: trivial whitespace cleanup, merging last two commits from kad --- modules/Dice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Dice.py b/modules/Dice.py index 4d56242..1431faa 100644 --- a/modules/Dice.py +++ b/modules/Dice.py @@ -72,7 +72,7 @@ class Dice(Module): else: b = a total = sum(b) - outstr = "[" + ",".join(str(i) for i in a) + "]" + outstr = "[" + ",".join(str(i) for i in a) + "]" return (total, outstr)