Florian Lindner wrote: > since ConfigParser does not seem to support multiple times the same option > name, like: > > dir="/home/florian" > dir="/home/john" > dir="/home/whoever"
I generally do this:
dirs =
/home/florian
/home/john
/home/whoever
...and then use str.split() in my program.
--
Benji York
--
http://mail.python.org/mailman/listinfo/python-list
