Update terminal.py

Fix error insert terminal number
This commit is contained in:
flaviosteimacher 2022-10-27 16:02:02 -03:00 committed by GitHub
parent c447ae0201
commit 295cfd9f60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"""