Quote:
Originally Posted by DiapDealer
I'm pretty sure Windows still does, but I'll double-check to be sure.
|
The way the PluginApplication handles translations is really nice anyway, so keeping the light version is useful in and of itself.
But the light version generates the following error message due to a slight dropped import of qVersion.
Code:
File "/Users/kbhend/Library/Application Support/sigil-ebook/sigil/plugins/FolderIn/plugin_utils_light.py", line 41, in <module>
PLUGIN_QT_MAJOR_VERSION = tuple(map(int, (qVersion().split("."))))[0]
^^^^^^^^
NameError: name 'qVersion' is not defined
Error: name 'qVersion' is not defined
which can be fixed by preceding qVersion() with "QtCore.". I made that change to my copy and it seems to all work just fine.