Skip to content

Commit 9e75bf0

Browse files
author
L'In20Cible
committed
Fixed an error when unloading
1 parent c008b70 commit 9e75bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/source-python/packages/source-python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def unload_plugins():
298298
from core.manager import core_plugin_manager
299299
from core.command import _core_command
300300

301-
for plugin_name in core_plugin_manager:
301+
for plugin_name in list(core_plugin_manager):
302302
_core_command.unload_plugin(plugin_name)
303303

304304

0 commit comments

Comments
 (0)