aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/dice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dice.py b/modules/dice.py
index 10ef3451..42d048cf 100644
--- a/modules/dice.py
+++ b/modules/dice.py
@@ -35,4 +35,4 @@ class Module(ModuleManager.BaseModule):
if len(results) > 1:
total = " (total: %d)" % total_n
event["stdout"].write("Rolled %s and got %s%s" % (
- str_roll, ", ".join(results), total))
+ str_roll, ", ".join(str(r) for r in results), total))