MkAssignment function doesn't work #1
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem is here:
c3c125fe19/vendortools/nfutil.py (L210)
In Python2, chr must have provided a binary object, but in Python 3 it's returned as a string. If ip_type is sent as 0 (integer type), chr(0) returns '\x00', which is a string. Struct expects b'\x00'.