[Zope-dev] 'None' object has no attribute 'load'
Chris Withers
chrisw@nipltd.com
Fri, 18 May 2001 12:30:51 +0100
Chris McDonough wrote:
>
> python
> import Zope
> app = Zope.app()
> ob = app._p_jar['\000\000\000\000\000(\347\026']
> print ob.id
> print ob.__class__
Thanks, that worked, and sorry Chris, but I'm about to ruin your day :-S
>>> app = Zope.app()
>>> ob = app._p_jar['\000\000\000\000\000(\347\026']
>>> print ob.id
Traceback (innermost last):
File "<stdin>", line 1, in ?
AttributeError: id
>>> print ob.__class__
<extension class
Products.CoreSessionTracking.SessionDataContainer.SessionDataContainerMount at
00BBDE10>
>>>
So it seems that even though I'm not actually using any CST stuff right now,
it's still causing these errors...
Any ideas?
cheers,
Chris