From b0980b660caa822f2e7654dfdd4f514e0c1b63a3 Mon Sep 17 00:00:00 2001 From: troido Date: Sun, 5 Apr 2020 13:15:55 +0200 Subject: added interact command --- asciifarmclient/inputhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asciifarmclient/inputhandler.py') diff --git a/asciifarmclient/inputhandler.py b/asciifarmclient/inputhandler.py index 4281c01..0dd356f 100644 --- a/asciifarmclient/inputhandler.py +++ b/asciifarmclient/inputhandler.py @@ -40,7 +40,7 @@ class InputHandler: try: self.commandHandler.execute([command, arg]) except Exception as e: - self.log(e) + self.client.log(e) except InvalidCommandException as e: self.client.log(", ".join(e.args)) else: -- cgit