diff --git a/commands/tinfoil.py b/commands/tinfoil.py index fadbfb1..4afd638 100755 --- a/commands/tinfoil.py +++ b/commands/tinfoil.py @@ -58,20 +58,26 @@ for xcz in xczs: id = id[0:-3] subprocess.run( - ["rclone", "copy", "-P", f"{remote}:\"xcz/{xcz}\"", "xcz/"], + ["rclone", "copy", "-P", f'{remote}:"xcz/{xcz}"', "xcz/"], stdout=sys.stdout, ) for dlc in dlcs: if id in dlc: subprocess.run( - ["rclone", "copy", "-P", f"{remote}:\"nsz/dlc/{dlc}\"", "nsz/dlc/"], + ["rclone", "copy", "-P", f'{remote}:"nsz/dlc/{dlc}"', "nsz/dlc/"], stdout=sys.stdout, ) for update in updates: if id in update: subprocess.run( - ["rclone", "copy", "-P", f"{remote}:\"nsz/updates/{dlc}\"", "nsz/updates/"], + [ + "rclone", + "copy", + "-P", + f'{remote}:"nsz/updates/{dlc}"', + "nsz/updates/", + ], stdout=sys.stdout, )