You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
nidupb
changed the title
Critical NoneType error with pelican when installing theme
Critical NoneType error with pelican 4.5.0 when installing Flex theme
Sep 7, 2020
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
The text was updated successfully, but these errors were encountered: