Fix refactor bug

This commit is contained in:
Mike Zingman 2015-11-27 17:51:44 -05:00
parent 0c809a86c1
commit 595d60a587
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class ambeIPSC(IPSC):
# Utility function to convert bytes to string of hex values (for debug)
def ByteToHex( byteStr ):
def ByteToHex( self, byteStr ):
return ''.join( [ "%02X " % ord(x) for x in byteStr ] ).strip()
#