Commit baf47d86 authored by Aurel's avatar Aurel

oops, remove debug


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@450 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent f4d1d848
......@@ -33,9 +33,7 @@ def bin(s):
"""Inverse of dump method."""
ret = []
while len(s):
print "%d" %int(s[:2], 16)
ret.append(chr(int(s[:2], 16)))
print ret
s = s[2:]
return ''.join(ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment