Hello gnome-terminal

2005-09-30 Thread egbert
When I start the following script in a gnome-terminal: #!/usr/bin/env python import os print hello gnome-terminal print os.environ[PYTHONPATH] I see the expected results in the same gnome-terminal window. However starting this same script via a launcher in a panel, a new

Re: Hello gnome-terminal

2005-09-30 Thread gnukid
Hi Launcher may spawn a new shell to execute your program. The new shell wont have your PYTHONPATH environment variable. Cheers, Noorul egbert wrote: When I start the following script in a gnome-terminal: #!/usr/bin/env python import os print hello gnome-terminal print

Re: Hello gnome-terminal

2005-09-30 Thread Mike Meyer
egbert [EMAIL PROTECTED] writes: When I start the following script in a gnome-terminal: #!/usr/bin/env python import os print hello gnome-terminal print os.environ[PYTHONPATH] I see the expected results in the same gnome-terminal window. However starting this same