Skip to content

Commit

Permalink
Merge pull request #110 from boschglobal/108-encoding-issues-on-windo…
Browse files Browse the repository at this point in the history
…ws-2

fix: Encoding issues on windows
  • Loading branch information
mb-emag authored Apr 27, 2023
2 parents 24115ae + f724ed1 commit 2537a48
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion doxysphinx/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def scope(
raise ApplicationError(f"source ({stylesheet}) and target ({target}) stylesheets cannot be identical.")

# load stylesheet and apply patches
css_content = stylesheet.read_text()
css_content = stylesheet.read_text(encoding="UTF-8")

if content_patch_callback:
css_content = content_patch_callback(css_content)
Expand Down
134 changes: 67 additions & 67 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2537a48

Please sign in to comment.