Fix conversational command handling

This commit is contained in:
Tulir Asokan
2018-08-30 13:32:04 +03:00
committed by GitHub
parent 068449c59c
commit b6f15934f2
+1 -1
View File
@@ -165,7 +165,7 @@ class CommandProcessor:
if sender.command_status and "next" in sender.command_status:
args.insert(0, orig_command)
evt.command = ""
command = sender.command_status["next"]
command_handler = sender.command_status["next"]
else:
command_handler = command_handlers["unknown-command"]
try: