issue #61 improvement: replace \t (tabs) with 4 spaces

This commit is contained in:
aNiceGuy 2012-07-06 15:03:18 +01:00
parent 76f7f907c6
commit 8cb525550b

View File

@ -120,7 +120,7 @@ def __oneShotErrorUse(expression, field):
if kb.fileReadMode and output: if kb.fileReadMode and output:
_ = output _ = output
try: try:
_ = safecharencode(output.decode("hex")).replace(r"\n", "\n") _ = safecharencode(output.decode("hex")).replace(r"\n", "\n").replace(r"\t", " ");
except: except:
pass pass
finally: finally: