I've been using an older version for a while and wanted to move everything to a clean environment to make sure that I could recover properly after a major failure.
It seems like this one file is throwing this error. I was tempted to just delete it but I wanted to know why.
If possible, is there directions on how to debug in situations like this?
Sorry for the title, I was going through a phase where I didn't know how to use my big developer words to express my frustration.
You have
tag: hyde
and it should be:
tags: hyde
This was a bug introduced in the recent version. Normally tag metadata isn't anything special and would be ignored (i.e. would be left alone as a string metadata). New addition treats it will Tag object but it isn't.
Thank you @avaris!
I've made the change and will close the issue. I hope that someone else will find this if they run into this issue.
+1 Thanks
This exact thing just bit me on Pelican 1.7.1. I accidentally typed Tag instead of Tags.
Most helpful comment
You have
tag: hydeand it should be:
tags: hydeThis was a bug introduced in the recent version. Normally
tagmetadata isn't anything special and would be ignored (i.e. would be left alone as a string metadata). New addition treats it willTagobject but it isn't.