Skip to content

Commit

Permalink
fix: convert to string
Browse files Browse the repository at this point in the history
  • Loading branch information
saidsay-so committed Jun 25, 2023
1 parent 37a59a0 commit 54ba84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion howdy/src/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def init_detector(lock):
# Test if at lest 1 of the data files is there and abort if it's not
if not os.path.isfile(str(paths_factory.shape_predictor_5_face_landmarks_path())):
print(_("Data files have not been downloaded, please run the following commands:"))
print("\n\tcd " + paths.dlib_data_dir)
print("\n\tcd " + str(paths.dlib_data_dir))
print("\tsudo ./install.sh\n")
lock.release()
exit(1)
Expand Down

0 comments on commit 54ba84e

Please sign in to comment.