3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

exec: fix textwrap error caused by passing the wrong type to reply()

This commit is contained in:
James Lu 2018-06-11 19:04:32 -07:00
parent 1a97a32ef5
commit 5ecbc2750e

View File

@ -153,7 +153,7 @@ def inject(irc, source, args):
log.info('(%s) Injecting raw text %r into protocol module for %s', irc.name,
args, irc.get_hostmask(source))
irc.reply(irc.parse_irc_command(args))
irc.reply(repr(irc.parse_irc_command(args)))
@utils.add_cmd
def threadinfo(irc, source, args):