diff options
-rw-r--r-- | Lib/plat-mac/applesingle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/plat-mac/applesingle.py b/Lib/plat-mac/applesingle.py index 7bbe8af..56d73a7 100644 --- a/Lib/plat-mac/applesingle.py +++ b/Lib/plat-mac/applesingle.py @@ -25,14 +25,14 @@ class Error(ValueError): pass # File header format: magic, version, unused, number of entries -AS_HEADER_FORMAT="LL16sh" +AS_HEADER_FORMAT=">ll16sh" AS_HEADER_LENGTH=26 # The flag words for AppleSingle AS_MAGIC=0x00051600 AS_VERSION=0x00020000 # Entry header format: id, offset, length -AS_ENTRY_FORMAT="lll" +AS_ENTRY_FORMAT=">lll" AS_ENTRY_LENGTH=12 # The id values |