From c776eb43a0fcb150ae396d7795f38965985283d8 Mon Sep 17 00:00:00 2001 From: Cristian Dima Date: Fri, 6 Oct 2017 19:54:47 +0300 Subject: [PATCH 1/2] added indent param to json.dumps for pretty printing --- lib/helpers/output_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/output_helper.py b/lib/helpers/output_helper.py index 7e04ded..7a6aa2d 100644 --- a/lib/helpers/output_helper.py +++ b/lib/helpers/output_helper.py @@ -67,7 +67,7 @@ def output_json(self, filename): 'Hash': host.hash, 'Headers': headers} output['Result'] = result - file.write_file(json.dumps(output)) + file.write_file(json.dumps(output, indent=2)) def output_fuzzy(self): From e419f660f9b4b1f756097d5f12552e3d8d5b6479 Mon Sep 17 00:00:00 2001 From: Michael <886344+codingo@users.noreply.github.com> Date: Sun, 8 Oct 2017 15:40:08 +1000 Subject: [PATCH 2/2] Update __version__.py --- lib/core/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/__version__.py b/lib/core/__version__.py index 19f2498..190075d 100644 --- a/lib/core/__version__.py +++ b/lib/core/__version__.py @@ -2,5 +2,5 @@ # |V|H|o|s|t|S|c|a|n| Developed by @codingo_ & @__timk # +-+-+-+-+-+-+-+-+-+ https://github.com/codingo/VHostScan -__version__ = '1.5.2' +__version__ = '1.5.3'