we need strings!

This commit is contained in:
jesopo 2018-11-16 17:43:05 +00:00
parent b008bb2a0f
commit 39c313bd64

View file

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