Re: [Tutor] Trouble with sys.path.append

2010-08-08 Thread Lie Ryan
aug dawg gmail.com> writes: > > Earlier today, I tried to add a folder to my PYTHONPATH. When > I tried sys.path.app('location/of/folder'), the command successfully > executed it, but then when I did sys.path to check to see if it was > now in my PYTHONPATH, it was not there. Does anyone know wha

Re: [Tutor] Trouble with sys.path.append

2010-08-08 Thread Steven D'Aprano
On Sun, 8 Aug 2010 09:35:38 am aug dawg wrote: > Hey all, > > Earlier today, I tried to add a folder to my PYTHONPATH. When I tried > sys.path.app('location/of/folder'), the command successfully executed > it, but then when I did sys.path to check to see if it was now in my > PYTHONPATH, it was not

[Tutor] Trouble with sys.path.append

2010-08-08 Thread aug dawg
Hey all, Earlier today, I tried to add a folder to my PYTHONPATH. When I tried sys.path.app('location/of/folder'), the command successfully executed it, but then when I did sys.path to check to see if it was now in my PYTHONPATH, it was not there. Does anyone know what might be causing this? Than