diff options
Diffstat (limited to 'Lib/plat-mac/ic.py')
-rw-r--r-- | Lib/plat-mac/ic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/ic.py b/Lib/plat-mac/ic.py index 769400a..ba21461 100644 --- a/Lib/plat-mac/ic.py +++ b/Lib/plat-mac/ic.py @@ -65,7 +65,7 @@ def _decode_fontrecord(data, key): return size, face, data[5:5+namelen] def _decode_boolean(data, key): - return ord(data[0]) + return data[0] def _decode_text(data, key): return data |