mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 10:46:16 +03:00
issue #2959: argh, do we really need to support Python 2.x? ;-)
This commit is contained in:
parent
51bed10d4e
commit
524addc499
|
@ -239,7 +239,10 @@ class PdfDict(UserDict):
|
|||
try:
|
||||
value = self[key]
|
||||
except KeyError:
|
||||
value = self[key.encode("us-ascii")]
|
||||
try:
|
||||
value = self[key.encode("us-ascii")]
|
||||
except KeyError:
|
||||
raise AttributeError(key)
|
||||
if isinstance(value, bytes):
|
||||
return decode_text(value)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user