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
This is the output at first with the app.add_stylesheet('css/custom.css') line error
File "/opt/Pentest-Cheatsheets/conf.py", line 187, in setup app.add_stylesheet('css/custom.css') AttributeError: 'Sphinx' object has no attribute 'add_stylesheet'
Changing the last line app.add_stylesheet('css/custom.css')
This is the output at first with the app.add_stylesheet('css/custom.css') line error
File "/opt/Pentest-Cheatsheets/conf.py", line 187, in setup app.add_stylesheet('css/custom.css') AttributeError: 'Sphinx' object has no attribute 'add_stylesheet'
Changing the last line
app.add_stylesheet('css/custom.css')
To this one
app.add_css_file('css/custom.css')
The issue is from sphinx and its mentioned here sphinx-doc/sphinx#7747
The text was updated successfully, but these errors were encountered: