Skip to content

Commit 0b67e14

Browse files
committed
WIP Debug on Windows
1 parent 6aa4c47 commit 0b67e14

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

khiops/core/internals/runner.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def _get_dir_status(a_dir):
6060
# urllib's url2pathname does not work properly
6161
a_dir_res = fs.create_resource(os.path.normpath(a_dir))
6262
a_dir_path = a_dir_res.uri_info.path
63+
print(f">>>> a_dir_path: '{a_dir_path}'")
6364
if platform.system() == "Windows":
6465
if a_dir_path.startswith("/"):
6566
a_dir_path = a_dir_path[1:]
@@ -1055,6 +1056,9 @@ def _initialize_default_samples_dir(self):
10551056
):
10561057
self._samples_dir = public_samples_dir
10571058
else:
1059+
print(
1060+
f">> Dir '{public_samples_dir}' status: '{_get_dir_status(public_samples_dir)}'"
1061+
)
10581062
self._samples_dir = str(home_samples_dir)
10591063

10601064
# The default samples location on Unix systems is:

0 commit comments

Comments
 (0)