Merge pull request #819 from mattrose/fix_insert_term_name2

Fix Insert Term Name Plugin error
This commit is contained in:
Matt Rose 2023-08-26 09:38:54 -04:00 committed by GitHub
commit 27814c2386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ class Terminator(Borg):
for term in self.get_target_terms(widget):
name = term.titlebar.get_custom_string() or term.get_window_title()
term.feed(name)
term.feed(name.encode())
def get_sibling_terms(self, widget):
termset = []