From 7fde7bd5dcf6e49ab782c82a091b459a0c8399ff Mon Sep 17 00:00:00 2001 From: Cory Solovewicz Date: Mon, 4 Nov 2019 22:33:21 -0800 Subject: [PATCH] Update core.py fix spacing after version in banner. --- theHarvester/lib/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theHarvester/lib/core.py b/theHarvester/lib/core.py index 17526fe5..953af526 100644 --- a/theHarvester/lib/core.py +++ b/theHarvester/lib/core.py @@ -96,7 +96,7 @@ def banner() -> None: print(r"* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *") print(r"* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *") print('* *') - print('* theHarvester {} *'.format(Core.version())) + print('* theHarvester {} *'.format(Core.version())) print('* Coded by Christian Martorella *') print('* Edge-Security Research *') print('* cmartorella@edge-security.com *')