I'm getting an error when I try to run my script
Error:"IndentationError: unindent does not match any outer indentation"
Code snipet that throws the error:
def update():
try:
lines = open("vbvuln.txt", "r").readlines()
except(IOError):
print "[-] Error: Check your phpvuln.txt path and permissions"
print "[-] Update Failed\n"
sys.exit(1)
try:
This is the actual line that occurs the error:
print "[-] Update Failed\n"