Tim Gray wrote on 20.07.09:
> On Mon 20, Jul'09 at  4:54 PM -0600, lee wrote:
>> Maybe some sort of print statement was missing (cut off).
>
> Yeah I probably left it off or something.  It should look something like  
> this:
>
> for i in dirs:
>       print '"+l/%s"' % i,

or
 
for i in dirs: 
        print '+%s' % i,

to get an output in accordance with the examples before:  +dir1 +dir2 ... +dirN 

jan

Reply via email to