[Zope] File referencing and LocalFS

Spicklemire, Jerry Jerry.Spicklemire@IFLYATA.COM
Wed, 5 Jul 2000 16:55:51 -0500


Hi Marco,

From: Marco Mariani [mailto:m.mariani@imola.nettuno.it]
Subject: Re: [Zope] File referencing and LocalFS

>> 
>> 	foldername = string.join(colname, '')
>> 
>> using a "blank" ('') between each string, in other words, with no
delimiter.

>Maybe you meant

>foldername = string.join(string.split(colname,' '),'')

>or

>foldername = string.replace(colname,' ','')

>because join takes a list, not a string.

Yes, you are correct!


Later,
Jerry S.