From 45f803ef2931ec8570bc37d25baad639b2ca6a85 Mon Sep 17 00:00:00 2001 From: Jonas Eppelt <jonas.eppelt@kit.edu> Date: Fri, 15 Nov 2024 12:15:10 +0100 Subject: [PATCH] typo --- bb2etp/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb2etp/core.py b/bb2etp/core.py index 9a5d460..a2bba82 100644 --- a/bb2etp/core.py +++ b/bb2etp/core.py @@ -328,7 +328,7 @@ class BeambackgroundMetadata: self.on_etp ), "Executions does not seem to be on ETP. Ceph paths are not accessible." assert self.kek_path is not None, "kek_paths is None. Please set the paths." - os.system(f"rsync -acz -r --mkpath --stats -h --progress --{host}:{self.kek_path} {self.ceph_path}") + os.system(f"rsync -acz -r --mkpath --stats -h --progress {host}:{self.kek_path} {self.ceph_path}") def get_beam_background_by_key(key: str, json_data: str = json_default_path): -- GitLab