diff --git a/src/staging/staging.py b/src/staging/staging.py index 4b1d106..b5c7384 100644 --- a/src/staging/staging.py +++ b/src/staging/staging.py @@ -60,7 +60,7 @@ def run(self, run_dir: str, step_type: StagingType) -> int: # is this an initial stage step if step_type == StagingType.INITIAL_STAGING: # get the run ID - run_id: str = run_dir.split('\\')[-1] + run_id: str = run_dir.split('/')[-1] # make the call to perform the op ret_val = self.initial_staging(run_dir, run_id, step_type)