From 54ba84e033dee7748000dfa40c45855e9d80094c Mon Sep 17 00:00:00 2001 From: Sayafdine Said Date: Sun, 25 Jun 2023 17:22:44 +0200 Subject: [PATCH] fix: convert to string --- howdy/src/compare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/howdy/src/compare.py b/howdy/src/compare.py index c46a1ef..747414a 100644 --- a/howdy/src/compare.py +++ b/howdy/src/compare.py @@ -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)