[alias] Use title in response
This commit is contained in:
parent
3004c01db4
commit
dbca402fe7
1 changed files with 4 additions and 4 deletions
|
@ -172,9 +172,9 @@ def cmd_listvars(msg):
|
||||||
res.append("%s didn't create variable yet." % user)
|
res.append("%s didn't create variable yet." % user)
|
||||||
return Response(" ; ".join(res), channel=msg.channel)
|
return Response(" ; ".join(res), channel=msg.channel)
|
||||||
elif len(context.data.getNode("variables").index):
|
elif len(context.data.getNode("variables").index):
|
||||||
return Response("Known variables: %s." %
|
return Response(list_variables(),
|
||||||
", ".join(list_variables()),
|
channel=msg.channel,
|
||||||
channel=msg.channel)
|
title="Known variables")
|
||||||
else:
|
else:
|
||||||
return Response("There is currently no variable stored.", channel=msg.channel)
|
return Response("There is currently no variable stored.", channel=msg.channel)
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ def cmd_listalias(msg):
|
||||||
if len(aliases):
|
if len(aliases):
|
||||||
return Response([a["alias"] for a in aliases],
|
return Response([a["alias"] for a in aliases],
|
||||||
channel=msg.channel,
|
channel=msg.channel,
|
||||||
title="Known aliases:")
|
title="Known aliases")
|
||||||
return Response("There is no alias currently.", channel=msg.channel)
|
return Response("There is no alias currently.", channel=msg.channel)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue