We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa4c47 commit 0b67e14Copy full SHA for 0b67e14
khiops/core/internals/runner.py
@@ -60,6 +60,7 @@ def _get_dir_status(a_dir):
60
# urllib's url2pathname does not work properly
61
a_dir_res = fs.create_resource(os.path.normpath(a_dir))
62
a_dir_path = a_dir_res.uri_info.path
63
+ print(f">>>> a_dir_path: '{a_dir_path}'")
64
if platform.system() == "Windows":
65
if a_dir_path.startswith("/"):
66
a_dir_path = a_dir_path[1:]
@@ -1055,6 +1056,9 @@ def _initialize_default_samples_dir(self):
1055
1056
):
1057
self._samples_dir = public_samples_dir
1058
else:
1059
+ print(
1060
+ f">> Dir '{public_samples_dir}' status: '{_get_dir_status(public_samples_dir)}'"
1061
+ )
1062
self._samples_dir = str(home_samples_dir)
1063
1064
# The default samples location on Unix systems is:
0 commit comments