Hi,

I just got started with TurboGears defined a few models. In one of the 
models I defined a column_property:

class Server(DeclarativeBase):
  ...
  ipaddr = Column(postgresql.INET)
  ip_family = column_property(func.family(ipaddr))

When I visited /admin it was giving me error "Neither Label nor Comparator 
object contains info".
It seems in Sprox code it tries to access column.info['title'] to get the 
title of field. I tried setting info={'title': 'IP_FAMILY'} in 
column_property as per SQLAlchemy docs but it didn't work.

-- 
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/turbogears/42204213-38f0-484f-bddf-edd2601d5403%40googlegroups.com.

Reply via email to