GNOME Bugzilla – Bug 587894
[patch] the environment passing with python does no longer work
Last modified: 2009-09-29 18:55:07 UTC
The recent update to the way the environment is build in vte.override broke the environment support. Example: #!/usr/bin/python import gtk import vte win = gtk.Window() t = vte.Terminal() win.add(t) win.show_all() t.fork_command("/bin/bash", envv=["foo=bar"]) gtk.main() Running "env|grep foo" in the shell does not show it. I will attach a patch that fixes this problem.
Created attachment 137922 [details] [review] fix envv passing
Hello, is something missing in this report that I should add? For me the patch with the example works so I wonder what more I can do to help with this bug :)
Fixed, thanks.