From 5a6d30e240cb9c46774ed584faf392432c218596 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Mon, 11 Sep 2023 10:21:10 +0200 Subject: [PATCH] fix download --- commands/tinfoil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/tinfoil.py b/commands/tinfoil.py index 72d90ec..e32aa3b 100755 --- a/commands/tinfoil.py +++ b/commands/tinfoil.py @@ -51,7 +51,7 @@ def download(path, file): return subprocess.run( - ["rclone", "copy", "-P", "-v", f"{remote}:{path}/{base}", f"{path}/"], + ["rclone", "copy", "-P", "-v", f"{remote}:{path}/{file}", f"{path}/"], check=True, stdout=sys.stdout, )