Re: python script terminating

2006-12-20 Thread Fredrik Lundh
Aditya Vaish wrote: > Using perl

python script terminating

2006-12-19 Thread Aditya Vaish
Using perl

Re: python script terminating

2006-12-19 Thread Fredrik Lundh
Aditya Vaish wrote: > I have a python script running on Debian sarge. It loops and walk > through a directory > > while 1: > > for dirn in os.listdir(buildpath): > > if os.path.exists(os.path.join(buildpath, dirn, 'pass')) and > dirn.find(build1) != -1: > > # ca

python script terminating

2006-12-18 Thread Aditya Vaish
I have a python script running on Debian sarge. It loops and walk through a directory while 1: for dirn in os.listdir(buildpath): if os.path.exists(os.path.join(buildpath, dirn, 'pass')) and dirn.find(build1) != -1: # case 1 Do something