From a97a703c9998e44f3a361124293ca9f868bcd677 Mon Sep 17 00:00:00 2001 From: MrTyton Date: Mon, 27 May 2024 19:48:26 -0400 Subject: [PATCH] Fix typo in command --- release-versions/latest.txt | 2 +- root/app/url_worker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release-versions/latest.txt b/release-versions/latest.txt index 27870fd..cd5954f 100644 --- a/release-versions/latest.txt +++ b/release-versions/latest.txt @@ -1 +1 @@ -2024.05.27-7 \ No newline at end of file +2024.05.27-8 \ No newline at end of file diff --git a/root/app/url_worker.py b/root/app/url_worker.py index ef795a1..f745ff8 100644 --- a/root/app/url_worker.py +++ b/root/app/url_worker.py @@ -222,7 +222,7 @@ def url_worker(queue: mp.Queue, cdb: calibre_info.CalibreInfo, pushbullet_info: ff_logging.log(f"\t({site}) Updating {path_or_url}", "OKGREEN") # Define the command to update the fanfic - command = f'cd {temp_dir} && python -m fanficfare.cli -u "{path_or_url}" --update-cover --non-interactive"' + command = f'cd {temp_dir} && python -m fanficfare.cli -u "{path_or_url}" --update-cover --non-interactive' # If the behavior of the fanfic is "force", add the "--force" option to the command if fanfic.behavior == "force": command += " --force"