Fixes another Pep8 warning even though it looks wrong in the code it prints correctly in terminal

This commit is contained in:
L1ghtn1ng 2019-02-17 00:41:35 +00:00
parent 243f3b50ea
commit cabc911697
2 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@
* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | * * | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *
* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| * * \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *
* * * *
* theHarvester 3.0.6 v307 * * theHarvester 3.0.6 v308 *
* Coded by Christian Martorella * * Coded by Christian Martorella *
* Edge-Security Research * * Edge-Security Research *
* cmartorella@edge-security.com * * cmartorella@edge-security.com *

View file

@ -45,12 +45,12 @@ def intelx_key():
def banner(): def banner():
print('\n\033[93m*******************************************************************') print('\n\033[93m*******************************************************************')
print("* _ _ _ *") print("* _ _ _ *")
print("* | |_| |__ ___ /\ /\__ _ _ ____ _____ ___| |_ ___ _ __ *") print(r"* | |_| |__ ___ /\ /\__ _ _ ____ _____ ___| |_ ___ _ __ *")
print("* | __| _ \ / _ \ / /_/ / _` | '__\ \ / / _ \/ __| __/ _ \ '__| *") print(r"* | __| _ \ / _ \ / /_/ / _` | '__\ \ / / _ \/ __| __/ _ \ '__| *")
print("* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *") print(r"* | |_| | | | __/ / __ / (_| | | \ V / __/\__ \ || __/ | *")
print("* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *") print(r"* \__|_| |_|\___| \/ /_/ \__,_|_| \_/ \___||___/\__\___|_| *")
print('* *') print('* *')
print('* theHarvester 3.0.6 v307 *') print('* theHarvester 3.0.6 v308 *')
print('* Coded by Christian Martorella *') print('* Coded by Christian Martorella *')
print('* Edge-Security Research *') print('* Edge-Security Research *')
print('* cmartorella@edge-security.com *') print('* cmartorella@edge-security.com *')