[utils] Fix struct.pack call on very old Python versions (#4181)

This commit is contained in:
Philipp Hagemeister 2014-11-14 00:39:32 +01:00
parent 69ede8ef81
commit eb4157fd17
1 changed files with 1 additions and 1 deletions

View File

@ -843,7 +843,7 @@ def bytes_to_intlist(bs):
def intlist_to_bytes(xs):
if not xs:
return b''
return struct.pack('%dB' % len(xs), *xs)
return struct_pack('%dB' % len(xs), *xs)
# Cross-platform file locking