Skip to content

Commit

Permalink
Debug null byte fix.
Browse files Browse the repository at this point in the history
Signed-off-by: Leonard Carcaramo <lcarcaramo@ibm.com>
  • Loading branch information
lcarcaramo committed Jan 29, 2024
1 parent 471fa09 commit b2bd968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyracf/common/irrsmo00.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def clear_raw_response(self) -> None:
"""Clear the current preserved raw response from IRRSMO00."""
self.__raw_response = b""

def __null_byte_fix(response: bytes) -> bytes:
def __null_byte_fix(self, response: bytes) -> bytes:
"""
This function replaces all null bytes that exist before the
last occurance the '>' (0x6E in IBM-1047) character in the
Expand Down

0 comments on commit b2bd968

Please sign in to comment.