Bugfix for erl_common.DebugHex
authorTomas Abrahamsson <[email protected]>
Fri, 12 Mar 2010 23:16:36 +0000 (13 00:16 +0100)
committerTomas Abrahamsson <[email protected]>
Fri, 12 Mar 2010 23:16:36 +0000 (13 00:16 +0100)
Erroneously called HexDumpFormat instead of _HexDumpFormat.
Thanks to Paul "TBBle" Hampson for bringing this to attention.

py_interface/erl_common.py

index fbb828f..5b04220 100644 (file)
@@ -279,7 +279,7 @@ def DebugHex(module, txt, msg):
     The debug message is printed to stdout, except if debugging has
     been set to go to a file, see DebugToFile.
     """
-    hexMsg = HexDumpFormat(msg)
+    hexMsg = _HexDumpFormat(msg)
     _DebugEmitText("%s: %s\n%s" % (module, txt, hexMsg))
 
 def _DebugEmitText(txt):