'bool' object has no attribute 'replace'
jedai47 opened this issue · 5 comments
jedai47 commented
I have this issue when executing with -u argument
casmpy commented
got same error
davidcbbc commented
any update on this? got the same error
davidcbbc commented
It seems to be a problem with Twig plugin , this workaround worked for me:
Remove the Twig entry from the plugins array at core/checks.py like this:
plugins = [
Smarty,
Mako,
Python,
Tornado,
Jinja2,
Freemarker,
Velocity,
Slim,
Erb,
Pug,
Nunjucks,
Dot,
Dust,
Marko,
Javascript,
Php,
Ruby,
Ejs
]
Sahabalam commented
thanks!! it works
BigW2016 commented
replace in core/plugin.py, 714 row:
from:
return result.replace('\n', '\n')
to:
if (result):
result.replace('\n', '\n')
return result