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