From 8cb525550b33d52065a30ce595ef6a1d8291c377 Mon Sep 17 00:00:00 2001 From: aNiceGuy Date: Fri, 6 Jul 2012 15:03:18 +0100 Subject: [PATCH] issue #61 improvement: replace \t (tabs) with 4 spaces --- lib/techniques/error/use.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/error/use.py b/lib/techniques/error/use.py index 8232d24c8..aa22592cc 100644 --- a/lib/techniques/error/use.py +++ b/lib/techniques/error/use.py @@ -120,7 +120,7 @@ def __oneShotErrorUse(expression, field): if kb.fileReadMode and output: _ = output try: - _ = safecharencode(output.decode("hex")).replace(r"\n", "\n") + _ = safecharencode(output.decode("hex")).replace(r"\n", "\n").replace(r"\t", " "); except: pass finally: