Skip to content

Commit

Permalink
Fix exception when reloading plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 28, 2019
1 parent 8401db1 commit 551a617
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/utils.py
Expand Up @@ -404,6 +404,9 @@ def _unloadPluginModules(packageName):
mods = _plugin_modules[packageName]

for mod in mods:
if not mod in sys.modules:
continue

# if it looks like a Qt resource file, try to do a cleanup
# otherwise we might experience a segfault next time the plugin is loaded
# because Qt will try to access invalid plugin resource data
Expand Down

0 comments on commit 551a617

Please sign in to comment.