repo.or.cz
/
py_interface.git
/
commitdiff
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
raw
|
patch
|
inline
|
side by side
(parent:
8255d64
)
Bugfix for erl_common.DebugHex
author
Tomas Abrahamsson
<
[email protected]
>
Fri, 12 Mar 2010 23:16:36 +0000
(13
00:16
+0100)
committer
Tomas 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
patch
|
blob
|
blame
|
history
diff --git
a/py_interface/erl_common.py
b/py_interface/erl_common.py
index
fbb828f
..
5b04220
100644
(file)
--- a/
py_interface/erl_common.py
+++ b/
py_interface/erl_common.py
@@
-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):