diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dice.py b/modules/dice.py index 69485b6d..a3456c82 100644 --- a/modules/dice.py +++ b/modules/dice.py @@ -26,4 +26,4 @@ class Module(ModuleManager.BaseModule): total = " (total: %d)" % total_n event["stdout"].write("Rolled %s and got %s%s" % ( - roll, total_n, ", ".join(results))) + roll, total_n, ", ".join(str(r) for r in results))) |
