From 595d60a58796d1fd10c4f9d8b34f65c426d8f118 Mon Sep 17 00:00:00 2001 From: Mike Zingman Date: Fri, 27 Nov 2015 17:51:44 -0500 Subject: [PATCH] Fix refactor bug --- ambe_audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambe_audio.py b/ambe_audio.py index 54d6ce9..6795229 100755 --- a/ambe_audio.py +++ b/ambe_audio.py @@ -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() #