Lukasz Szybalski schrieb: > Does cheetah supports dash in its name? > > I have a html file that I need to fill some info in. Inside that html > file one of the variable name is '$myDictionary.LAST-NAME-OF-CUSTOMER' > . Does cheetah supports "-"?
No. Python identifiers don't allow dashes (because they are used as the minus operator) and the same rules apply for placeholders in Cheatah. But why don't you just use $myDictionary['LAST-NAME-OF-CUSTOMER'] ? Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

