Skip to content

Commit

Permalink
fixing path delimiter to linux
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Jan 9, 2024
1 parent 51d6f10 commit 2453006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/staging/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2453006

Please sign in to comment.