-
Do you see the three inverted question marks behind I checked my whole code and can't find any debug-like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@buhtz - these � (REPLACEMENT CHARACTER used to replace an unknown, unrecognized, or unrepresentable character) are coming from the underlying https://github.com/python-pillow/Pillow library. Somewhere down this line img.save(pathlib.Path('img.bmp')) Changing the file name to e.g. |
Beta Was this translation helpful? Give feedback.
@buhtz - these � (REPLACEMENT CHARACTER used to replace an unknown, unrecognized, or unrepresentable character) are coming from the underlying https://github.com/python-pillow/Pillow library.
Somewhere down this line
https://codeberg.org/buhtz/buhtzology/src/commit/691c07c7272cd5889e943bfccc0797b1110ac5f0/tests/test_report.py#L26
Changing the file name to e.g.
img.png
eliminates the problem. Perhaps ask in python-pillow/Pillow.