View Single Post
Old 05-06-2024, 12:59 PM   #2904
nichobi
Junior Member
nichobi began at the beginning.
 
Posts: 1
Karma: 10
Join Date: May 2024
Device: Kobo Clara HD
Exclamation Python 3.12 fix

Noticed that the plugin wasn't working for me after upgrading to Python 3.12, and trying to change the settings kept giving me a popup saying I had to restart calibre before customising. Turns out this is because of the removal of the SafeConfigParser alias, which has been deprecated since 3.2. Replacing all instances of
Code:
SafeConfigParser
with just
Code:
ConfigParser
in the .py files in the plugin .zip file seems to be enough to get it running again
nichobi is offline   Reply With Quote