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

fix: convert to string

This commit is contained in:
Sayafdine Said 2023-06-25 17:22:44 +02:00
parent 37a59a06a7
commit 54ba84e033
No known key found for this signature in database
GPG key ID: 7567D43648C6E2F4

View file

@ -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)