From ed55330153e7d85e753d1321c4e46e9bb6833735 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Wed, 5 Dec 2018 19:45:30 -0500 Subject: python: Fix console not eating commands --- plugins/python/python.py | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/python') diff --git a/plugins/python/python.py b/plugins/python/python.py index e6a61b5e..1eeb10b4 100644 --- a/plugins/python/python.py +++ b/plugins/python/python.py @@ -281,6 +281,7 @@ def _on_say_command(word, word_eol, userdata): python = ffi.string(word_eol[1]) lib.hexchat_print(lib.ph, b'>>> ' + python) exec_in_interp(__decode(python)) + return 1 return 0 -- cgit 1.4.1