From: Jamie M. <jam...@gm...> - 2014-10-04 21:40:35
|
Hi there, I use python-markdown in an app I made. A number of users have reported issues that seem to have been caused by the latest update to python-markdown. This is the error message: File "/usr/lib/python3.4/site-packages/markdown/extensions/__init__.py", line 75, in setConfigs for key, value in items: TypeError: 'NoneType' object is not iterable I include the extensions like so: markdown.markdown(text, ['extra', 'nl2br', 'urlize', 'Highlighting', 'Strikethrough', 'markdown_checklist', 'superscript', 'subscript']) Commenting out lines 25-44 of "markdown/extensions/__init__.py" seems to fix the issue (as a temporary fix). Any ideas to what I am doing wrong or how should I fix it. Thanks for your help, Jamie |