At 09:16 AM 10/31/00 -0500, Steve Spicklemire wrote:
OK I think I found the problem(s):
*** Expressions.py 2000/10/18 23:11:55 1.1.1.3 --- Expressions.py 2000/10/31 14:14:09 *************** *** 133,139 **** def eval(self,mapping): """Return the result of looking up/calling the name from 'mapping'. If the object was created with 'call==1', call it before returning it.""" ! return md.getitem(self.name,self.call)
del Eval, expr_globals, TemplateDict, Base, ComputedAttribute --- 133,139 ---- def eval(self,mapping): """Return the result of looking up/calling the name from 'mapping'. If the object was created with 'call==1', call it before returning it.""" ! return mapping.getitem(self.name,self.call)
Yep, that's it. Looks like I screwed up while doing documentation and cleanup on the file just before release (I was changing parameter names for consistency in the internal docs). :( I'll get this fixed today, and see about releasing an updated beta that also fixes the missing "help" directory for PlugIns.