From 349c9a019043fb4a6e832d0eb5f3873f18519616 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sat, 17 Nov 2018 12:23:49 +0000 Subject: [PATCH] ints are not strings --- modules/dice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))