Open fulv opened 3 years ago
I found this problem:
> /usr/local/plone-5.2/zeoserver/lib/python3.6/site-packages/bobtemplates/plone/base.py(201)read_bobtemplates_ini()
-> path = configurator.target_directory + "/bobtemplate.cfg"
(Pdb) configurator.target_directory
'/usr/local/plone-5.2/zeoserver/src/my.package/my.package'
Somehow, my.package ends up getting added twice at the end of the target_directory
Then I did this:
(Pdb) configurator.target_directory = '/usr/local/plone-5.2/zeoserver/src/my.package'
(Pdb) c
And it completed without the error above.
Description
I was trying to add a content type to a package previously created by plonecli.
What I Did