Hi,
I’m using pelican 4.5.0 with Python 3.8.5 and Invoke 1.4.1
When I do the command invoke build in my blog folder, I have the following output :
`CRITICAL: argument of type 'NoneType' is not iterable``.
I tried to install a theme named Flex, so I added the following line in my pelicanconf.py file :
THEME = "/Users/nicolas/pCloud Sync/Blog/pelican-themes/Flex"
If I remove the line, the command invoke build runs correctly.
Also, the Pelican 4.5.0 documentation differs from the getpelican/pelican-themes git page (or I misunderstand something :) ). So I also tried using the pelican-themes command. It runs without any issue, and the pelican-themes -l shows my theme in the output. I guess I still have to put the THEME path in the pelicanconf.py file ? However, the invoke output is still the same.
Does anyone have an idea about the source of the error ?
Thanks
Workaround in the mean time, define PLUGINS in pelicanconf.
If you don't use plugins, PLUGINS = [].
If you use the newer auto-detected plugins, it should be an explicit list of those plugins: PLUGINS = ['pelican.plugins.foo', 'pelican.plugins.bar', ...]
Hi, I’m using pelican 4.5.0 with Python 3.8.5 and Invoke 1.4.1
When I do the command
invoke build
in my blog folder, I have the following output : `CRITICAL: argument of type 'NoneType' is not iterable``.I tried to install a theme named Flex, so I added the following line in my pelicanconf.py file :
THEME = "/Users/nicolas/pCloud Sync/Blog/pelican-themes/Flex"
If I remove the line, the command
invoke build
runs correctly.Netlify output is :
Also, the Pelican 4.5.0 documentation differs from the getpelican/pelican-themes git page (or I misunderstand something :) ). So I also tried using the
pelican-themes
command. It runs without any issue, and thepelican-themes -l
shows my theme in the output. I guess I still have to put the THEME path in the pelicanconf.py file ? However, theinvoke
output is still the same.Does anyone have an idea about the source of the error ? Thanks