ints are not strings

This commit is contained in:
jesopo 2018-11-17 12:23:49 +00:00
parent 692c79c745
commit 349c9a0190

View file

@ -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)))