Le 02/03/11 14:59, Godefroid Chapelle a écrit :
> IOW, it seems it should be :
>
> def getExportStep(self, step, default=None):
> """Simple wrapper to query both the global and local step
> registry."""
> res=self._export_step_registry.getStep(step, default)
> if res is not default:
> return res
> return _export_registry.getStep(step, default)
I meant :
def getExportStep(self, step, default=None):
"""Simple wrapper to query both the global and local step
registry."""
res=self._export_registry.getStep(step, default)
if res is not default:
return res
return _export_step_registry.getStep(step, default)
--
Godefroid Chapelle (aka __gotcha) http://bubblenet.be
_______________________________________________
Zope-CMF maillist - [email protected]
https://mail.zope.org/mailman/listinfo/zope-cmf
See https://bugs.launchpad.net/zope-cmf/ for bug reports and feature requests