We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4ea73 commit c0105bdCopy full SHA for c0105bd
python/utils.py
@@ -445,6 +445,9 @@ def _unloadPluginModules(packageName):
445
mods = _plugin_modules[packageName]
446
447
for mod in mods:
448
+ if not mod in sys.modules:
449
+ continue
450
+
451
# if it looks like a Qt resource file, try to do a cleanup
452
# otherwise we might experience a segfault next time the plugin is loaded
453
# because Qt will try to access invalid plugin resource data
0 commit comments