diff --git a/SupyMisc/plugin.py b/SupyMisc/plugin.py index 01948a0..42db051 100644 --- a/SupyMisc/plugin.py +++ b/SupyMisc/plugin.py @@ -58,13 +58,13 @@ class SupyMisc(callbacks.Plugin): """ Returns repeated times. must be a positive integer. To keep leading and trailing spaces, it is recommended to quote the - argument "like this". """ + argument " like this ". """ max = self.registryValue("repeat.max") if num <= max: irc.reply(text * num) else: irc.error("The value given is too large. Current " - "maximum: {}".format(max)) + "maximum: {}".format(max), Raise=True) repeat = wrap(repeat, ['positiveInt', 'text']) ### Generic informational commands (ident fetcher, channel counter, etc.)