minor fix: one zero too many in assert
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@547 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
parent
142506b07d
commit
ce47e0d978
@ -483,7 +483,7 @@ def packUShort(value):
|
||||
|
||||
|
||||
def packULong(value):
|
||||
assert 0 <= value < 0x1000000000, value
|
||||
assert 0 <= value < 0x100000000, value
|
||||
return struct.pack(">L", value)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user