-
Describe the bugHello, I'm trying to build the VyOS documentation via CI, which worked fine a few months ago. However, after I updated the underlying Docker image, there is an error. The error message is not very meaningful for me. What exactly is the error? Is this an error from sphinx or from the VyOS developers? Why does it not work on the CI (Debian), but on my local PC (Arch Linux)? How to ReproduceSee https://ci.codeberg.org/repos/13725/pipeline/149/9 Environment Information
Sphinx extensionsNo response Additional context
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As previously discussed (#12340, #12793), this is a function deprecated and removed by Docutils that was an alias to On line 224 of Closing, as this isn't an issue with Sphinx. A |
Beta Was this translation helpful? Give feedback.
As previously discussed (#12340, #12793), this is a function deprecated and removed by Docutils that was an alias to
str()
.On line 224 of
docs/_ext/vyos.py
you can either remove the linepath = nodes.reprunicode(path)
or replace it withpath = str(path)
.Closing, as this isn't an issue with Sphinx.
A