Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jan 11, 2025
1 parent 13049d5 commit 5cafe3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pioreactor/utils/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def rsync(*args: str) -> None:
l = create_logger("rsync")
try:
l.info("rsync" + " ".join(args))
check_call(("rsync",) + args, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
r = check_call(("rsync",) + args, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
l.info(r)
except CalledProcessError as e:
raise RsyncError from e

Expand Down

0 comments on commit 5cafe3a

Please sign in to comment.