From 430521af4375505ce66ed90929e385f46693132b Mon Sep 17 00:00:00 2001 From: Zhihong Zhang <100308595+nvidianz@users.noreply.github.com> Date: Mon, 26 Jun 2023 16:38:47 -0400 Subject: [PATCH] PIckup Custom Driver Changes to dev (#1828) * Added more detail when recursive data is found in FOBS * Addressed PR issues --- nvflare/fuel/f3/communicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvflare/fuel/f3/communicator.py b/nvflare/fuel/f3/communicator.py index 4ab4463b86..04d7dc7217 100644 --- a/nvflare/fuel/f3/communicator.py +++ b/nvflare/fuel/f3/communicator.py @@ -46,7 +46,7 @@ def load_comm_drivers(): if not driver_path: return - for path in driver_path.split(":"): + for path in driver_path.split(os.pathsep): log.debug(f"Custom driver folder {path} is searched") driver_mgr.search_folder(path, None)