Module collective.transmogrifier.utils, line 124, in constructPipeline
Module collective.transmogrifier.sections.splitter, line 117, in __init__
Module collective.transmogrifier.sections.splitter, line 117, in <listcomp>
Module collective.transmogrifier.transmogrifier, line 119, in __iter__
AttributeError: 'Options' object has no attribute 'mylist'
it looks like options can't be iterated over anymore, so when the splitter tries to find the pipe id's it fails. Line 117 in sections.py is a good place to pdb.
Possibly only in python3.
it looks like
options
can't be iterated over anymore, so when the splitter tries to find the pipe id's it fails. Line 117 in sections.py is a good place to pdb.