Browse Source

Better setup handling

bugfixes
gau1991 10 years ago
parent
commit
b3731527fe
  1. 4
      setup.py

4
setup.py

@ -39,6 +39,10 @@ except Exception as e:
print("EasyEngine (ee) will NEVER send your information across")
ee_user = input("Enter your name: ")
while ee_user is "":
print("Name not Valid, Please enter again")
ee_user = input("Enter your name: ")
ee_email = input("Enter your email: ")
while not re.match(r"^[A-Za-z0-9\.\+_-]+@[A-Za-z0-9\._-]+\.[a-zA-Z]*$",

Loading…
Cancel
Save