Am Mittwoch, 18. Oktober 2006 11:54 schrieb José Matos: > On Wednesday 18 October 2006 10:44, [EMAIL PROTECTED] wrote: > > + if not option == None: > > Whew... :-( > That is difficult to read, a double negative always is. What is wrong with > > if option:
I did not know that tha would work. What I used elsewhere was if option != None: but this somehow is a left over from a more complicated expression. Georg