diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/protolib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/protolib.py b/util/protolib.py index 4f3f2c7e3..1e442f1d9 100644 --- a/util/protolib.py +++ b/util/protolib.py @@ -152,7 +152,7 @@ def _EncodeVarint32(out_file, value): bits = value & 0x7f value >>= 7 while value: - out_file.write(struct.pack('<B', 0x80|bits)) + out_file.write(struct.pack('<B', 0x80 | bits)) bits = value & 0x7f value >>= 7 out_file.write(struct.pack('<B', bits)) |