diff options
author | Robert Göhler <github@ghlr.de> | 2024-10-21 09:34:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-21 09:34:44 +0200 |
commit | c6253037299476f37f02694751383e7a92df7630 (patch) | |
tree | 8b19b742ef684c22f243f354edb6f6a193a702a0 | |
parent | f3246467c68e51080e5817a18974fe0dfb95fd1f (diff) | |
parent | dc9e1963bac60b45a6b8fb2d662520f37fa3e921 (diff) | |
download | vyos-documentation-c6253037299476f37f02694751383e7a92df7630.tar.gz vyos-documentation-c6253037299476f37f02694751383e7a92df7630.zip |
Merge pull request #1562 from marek22k/fix-build
Fix T6777
-rw-r--r-- | docs/_ext/vyos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_ext/vyos.py b/docs/_ext/vyos.py index c1a96cd9..2f4dede9 100644 --- a/docs/_ext/vyos.py +++ b/docs/_ext/vyos.py @@ -221,7 +221,7 @@ class CfgInclude(SphinxDirective): path = os.path.join(self.standard_include_path, path[1:-1]) path = os.path.normpath(os.path.join(source_dir, path)) path = utils.relative_path(None, path) - path = nodes.reprunicode(path) + path = str(path) encoding = self.options.get( 'encoding', self.state.document.settings.input_encoding) e_handler=self.state.document.settings.input_encoding_error_handler |