diff --git a/plugins/Markov.py b/plugins/Markov.py index ff0e618e5..0df4e8f8d 100644 --- a/plugins/Markov.py +++ b/plugins/Markov.py @@ -314,7 +314,7 @@ class Markov(callbacks.Privmsg): return words.append(follower) if givenArgs: - irc.reply(' '.join(words)) + irc.reply(' '.join(words[:-1])) else: irc.reply(' '.join(resp)) self.q.enqueue(markov)