From a77aef83c67f292c6ddac7e6c57d77cb372a996c Mon Sep 17 00:00:00 2001 From: Thore Schillmann Date: Thu, 30 Jun 2022 13:05:36 +0000 Subject: [PATCH] automatically set `config_converterpath` --- cps/admin.py | 4 +++- cps/templates/config_edit.html | 7 ------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/cps/admin.py b/cps/admin.py index 3b24e518..149d4aa4 100644 --- a/cps/admin.py +++ b/cps/admin.py @@ -1722,12 +1722,14 @@ def _configuration_update_helper(): _config_string(to_save, "config_calibre") _config_string(to_save, "config_binariesdir") - _config_string(to_save, "config_converterpath") _config_string(to_save, "config_kepubifypath") if "config_binariesdir" in to_save: calibre_status = helper.check_calibre(config.config_binariesdir) if calibre_status: return _configuration_result(calibre_status) + # ToDo: Remove this and 'self.config_converterpath' and replace with 'config.get_calibre_binarypath("ebook-convert")' everywhere + to_save["config_converterpath"] = config.get_calibre_binarypath("ebook-convert") + _config_string(to_save, "config_converterpath") reboot_required |= _config_int(to_save, "config_login_type") diff --git a/cps/templates/config_edit.html b/cps/templates/config_edit.html index 725fb88d..c9cf9a29 100644 --- a/cps/templates/config_edit.html +++ b/cps/templates/config_edit.html @@ -330,13 +330,6 @@ - -
- - - - -