0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

don't frighten user with slowdown message, it's not so significant; notify user about max name length

This commit is contained in:
dmig 2018-12-09 13:50:35 +07:00
parent ff02a723d4
commit 377241bd2e
No known key found for this signature in database
GPG key ID: A4A245B3AD37C4FC

View file

@ -46,8 +46,8 @@ except FileNotFoundError:
# Print a warning if too many encodings are being added
if len(encodings) > 3:
print("WARNING: Every additional model slows down the face recognition engine")
print("Press ctrl+C to cancel\n")
print("NOTICE: Each additional model slows down the face recognition engine slightly")
print("Press Ctrl+C to cancel\n")
print("Adding face model for the user " + user)
@ -63,7 +63,7 @@ if builtins.howdy_args.y:
print('Using default label "%s" because of -y flag' % (label, ))
else:
# Ask the user for a custom label
label_in = input("Enter a label for this new model [" + label + "]: ")
label_in = input("Enter a label for this new model [" + label + "] (max 24 characters): ")
# Set the custom label (if any) and limit it to 24 characters
if label_in != "":