Error while launching it
Opened this issue · 3 comments
Deleted user commented
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$ python webkiller.py
File "webkiller.py", line 16
print '\r'
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('\r')?
$
Deleted user commented
I'm having the same issue on windows. I'll try it on kali when I get home.
cymilad commented
use kali linux
ahmedguetat62 commented
probably because you're using python 3 so that the syntax is different so that instead of print'\r' it should be
print("\r")
so that you should modify every print