MkAssignment function doesn't work #1
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Groesz.org/progpib#1
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
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'.