imager: remove spaces in path
This commit is contained in:
parent
4761fc4229
commit
9852c3c469
|
@ -596,8 +596,8 @@ class ImagerProcess(multiprocessing.Process):
|
||||||
self.__export_path = os.path.join(
|
self.__export_path = os.path.join(
|
||||||
self.__base_path,
|
self.__base_path,
|
||||||
self.__global_metadata["object_date"],
|
self.__global_metadata["object_date"],
|
||||||
str(self.__global_metadata["sample_id"]),
|
str(self.__global_metadata["sample_id"]).replace(" ", "_"),
|
||||||
str(self.__global_metadata["acq_id"]),
|
str(self.__global_metadata["acq_id"]).replace(" ", "_"),
|
||||||
)
|
)
|
||||||
|
|
||||||
if os.path.exists(self.__export_path):
|
if os.path.exists(self.__export_path):
|
||||||
|
|
Loading…
Reference in a new issue