Skip to content

Commit

Permalink
Fix the rclone split #91
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-dk committed Sep 8, 2021
1 parent dd48a57 commit 60cf5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tortoolkit/core/task_sequencer.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def execute(self):
if extracted_path is not False:
dl_path = extracted_path
else:
arch_obj = Archiver(dl_path, prev_update_message, self._user_msg)
arch_obj = Archiver(dl_path, prev_update_message, self._user_msg, not choices["rclone"])
archived_path = await arch_obj.execute()
if archived_path is not False:
dl_path = archived_path
Expand All @@ -82,7 +82,7 @@ async def execute(self):
dl_path = extracted_path

elif choices["zip"]:
arch_obj = Archiver(dl_path, prev_update_message, self._user_msg)
arch_obj = Archiver(dl_path, prev_update_message, self._user_msg, not choices["rclone"])
archived_path = await arch_obj.execute()
if archived_path is not False:
dl_path = archived_path
Expand Down

0 comments on commit 60cf5a3

Please sign in to comment.