From b9a82f59568a38a7e4a0dc08127d4da9d4c9a313 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Wed, 6 Nov 2019 12:32:51 -0500 Subject: [PATCH] Make it look pretty --- commands/generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/generate.py b/commands/generate.py index 8960ec9..cacfdbb 100644 --- a/commands/generate.py +++ b/commands/generate.py @@ -37,4 +37,4 @@ def generate(bot,channel,nick,generator,count="1"): res = [GENERATORS[generator]() for x in range(count)] if generator!="idea": res = [titlecase.titlecase(x) for x in res] - bot.say(channel,"{}: {}".format(nick,",".join(res))) + bot.say(channel,"{}: {}".format(nick,", ".join(res)))