"evan" <[EMAIL PROTECTED]> writes: > WriteException: Cannot write in JSON: <User 1 > creationDate='datetime.datetime...)' > modificationDate='datetime.datetime...)' username='test' > password='test'> > </pre> > <div id="poweredBy"> > <span>Powered by <a href="http://www.cherrypy.org">Cherrypy > 2.1.0</a></span> > </div> > > Is it the DateTimeCol 's that are giving JSON grief now? I really > appreciate your help. Thanks,
You're returning an instance of your User class, not its data. Try returning a list or dictionary instead (I believe I use dicts, but I have to look in my code ;-)) -- Jorge Godoy <[EMAIL PROTECTED]>

