On 28 December 2011 23:25, Julien Cigar <[email protected]> wrote: > tal:define="tinymce False">
This ^^^ was in your template that defines the macro. It should have read: tal:define="tinymce tinymce | False" That's because the "|" pipe operator will catch NameError, and proceed to the next value, False in your case, which then serves as a default. \malthe -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
