And here is how guake deals with this:

121     def feed_child(self, resolved_cmdline):
122         if (Vte.MAJOR_VERSION, Vte.MINOR_VERSION) >= (0, 42):
123             encoded = resolved_cmdline.encode("utf-8")
124             try:
125                 super().feed_child_binary(encoded)
126             except TypeError:
127                 # The doc doest not say clearly at which version the 
feed_child* function has lost
128                 # the "len" parameter :(
129                 super().feed_child(resolved_cmdline, len(resolved_cmdline))
130         else:
131             super().feed_child(resolved_cmdline, len(resolved_cmdline))

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1780501

Title:
  Traceback calling Vte.Terminal.feed_child()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1780501/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to