Merge pull request #369 from TheButlah/patch-1
Inaccurate cli message fixed
This commit is contained in:
commit
28b6e0e188
2 changed files with 2 additions and 1 deletions
|
|
@ -97,6 +97,7 @@ insert_model = {
|
||||||
|
|
||||||
# Set up video_capture
|
# Set up video_capture
|
||||||
video_capture = VideoCapture(config)
|
video_capture = VideoCapture(config)
|
||||||
|
|
||||||
print("\nPlease look straight into the camera")
|
print("\nPlease look straight into the camera")
|
||||||
|
|
||||||
# Give the user time to read
|
# Give the user time to read
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ user = builtins.howdy_user
|
||||||
# Check if the models file has been created yet
|
# Check if the models file has been created yet
|
||||||
if not os.path.exists(path + "/models"):
|
if not os.path.exists(path + "/models"):
|
||||||
print("Face models have not been initialized yet, please run:")
|
print("Face models have not been initialized yet, please run:")
|
||||||
print("\n\thowdy " + user + " add\n")
|
print("\n\tsudo howdy -U " + user + " add\n")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# Path to the models file
|
# Path to the models file
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue