I don't how to make the script repeat this function if the user doesn't input the correct information.
def installer(x):
if x == "Y" or x == "y":
print("Ok, Getting On with the install")
noncustompath()
elif x == "N" or x == "n":
print("Ok, Cool")
else:
#Repeat function
Thanks.