ints are not strings
This commit is contained in:
parent
692c79c745
commit
349c9a0190
1 changed files with 1 additions and 1 deletions
|
@ -26,4 +26,4 @@ class Module(ModuleManager.BaseModule):
|
||||||
total = " (total: %d)" % total_n
|
total = " (total: %d)" % total_n
|
||||||
|
|
||||||
event["stdout"].write("Rolled %s and got %s%s" % (
|
event["stdout"].write("Rolled %s and got %s%s" % (
|
||||||
roll, total_n, ", ".join(results)))
|
roll, total_n, ", ".join(str(r) for r in results)))
|
||||||
|
|
Loading…
Reference in a new issue