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:
jvr 2008-03-09 20:48:45 +00:00
parent 142506b07d
commit ce47e0d978

View File

@ -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)