Fix except-finally section that swallowed command unittest error message. Resolves #1629.

This commit is contained in:
Griatch 2018-08-20 20:21:22 +02:00
parent 42038737ff
commit 1923689040
3 changed files with 30 additions and 23 deletions

View file

@ -71,7 +71,7 @@ class CmdLook(COMMAND_DEFAULT_CLASS):
target = caller.search(self.args)
if not target:
return
self.msg((caller.at_look(target), {'type':'look'}), options=None)
self.msg((caller.at_look(target), {'type': 'look'}), options=None)
class CmdNick(COMMAND_DEFAULT_CLASS):