mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Merge pull request #306 from mjpieters/master
Fix for #304: test for `str`, not `"utf-8"`.
This commit is contained in:
commit
7fe5fe6dbb
|
@ -261,7 +261,7 @@ def load_path(filename):
|
|||
"Load a font file, searching along the Python path."
|
||||
for dir in sys.path:
|
||||
if isDirectory(dir):
|
||||
if not isinstance(filename, "utf-8"):
|
||||
if not isinstance(filename, str):
|
||||
if bytes is str:
|
||||
filename = filename.encode("utf-8")
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user