From 295cfd9f60b12f3ca5f457f025b02ce384915e4c Mon Sep 17 00:00:00 2001 From: flaviosteimacher <39162591+flaviosteimacher@users.noreply.github.com> Date: Thu, 27 Oct 2022 16:02:02 -0300 Subject: [PATCH] Update terminal.py Fix error insert terminal number --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 101f609c..daa5750e 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -1624,7 +1624,7 @@ class Terminal(Gtk.VBox): def feed(self, text): """Feed the supplied text to VTE""" - self.vte.feed_child(text) + self.vte.feed_child(text.encode()) def zoom_in(self): """Increase the font size"""