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:
parent
1a97a32ef5
commit
5ecbc2750e
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user