Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using web.py to create a site, and to pass config values and common functions between the backend and frontend templates I am using a custom class object. I am using a base template, and could not figure out how to pass a variable to a base template so I just pass it to the child template and then do

$var o: $:obj

but when accessing it in the base template, I get

<object.object instance at 0x12345678>

and I can't figure out what I'm doing wrong. I've added ':' before all references to the variable, but it does not help.

share|improve this question

1 Answer

up vote 1 down vote accepted

This should be done like this:

$var o = obj
share|improve this answer
Hmmm. Strange. I tried that before, but that didn't work. I guess it was because I named them the same thing, and they happen to be in the same scope. Thanks, that works now! – Jacob Parry Aug 5 '12 at 19:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.