Hi guys,
In order to improve our app's response time I decided to upgrade to
genshi. Seemed straight forward enough and I figured I should do it
while I still have a manageable amount of templates.
It worked fine for simple templates however when I have a $
{obj.member} element such as in the input below:

<div py:def="addsocieteformfunc(s)" >
        <div class="addform default_border notopborder">
             some form stuff here
             <input type="hidden" name="id" value="${s.id_societe}"></
input>
        </div>
</div>

I get the following error :

http://pastebin.com/m1d813f75

Now this error looks strange to me for two reasons :
- First it seems like it's looking in the model but for some reason,
even though id_societe is a column, it won't find it. but it does
display
Column(\'id_societe\', Integer(), table=<societe>, primary_key=True,
nullable=False)
in the error. is there some sort of encoding error there ?
- second I can't find the "build/bdist.macosx-10.3-fat/egg/" directory
it's refering to, and it looks especially weird since I'm not using
macos but ubuntu. Maybe the egg was built on macos but shouldn't I
find the directory somewhere ?

Thanks for the help.
Tom
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to