Autohelp now shows the command prefix again
This commit is contained in:
parent
1078f12770
commit
a8b8eb3a6c
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ def dispatch(input, kind, func, args, autohelp=False):
|
||||||
|
|
||||||
if autohelp and args.get('autohelp', True) and not input.inp \
|
if autohelp and args.get('autohelp', True) and not input.inp \
|
||||||
and func.__doc__ is not None:
|
and func.__doc__ is not None:
|
||||||
input.notice(func.__doc__)
|
input.notice(input.conn.conf["command_prefix"] + func.__doc__)
|
||||||
return
|
return
|
||||||
|
|
||||||
if func._thread:
|
if func._thread:
|
||||||
|
|
Reference in a new issue