aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/plugin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'passes/cmds/plugin.cc')
-rw-r--r--passes/cmds/plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/cmds/plugin.cc b/passes/cmds/plugin.cc
index 940092301..1a39140d4 100644
--- a/passes/cmds/plugin.cc
+++ b/passes/cmds/plugin.cc
@@ -44,7 +44,7 @@ void load_plugin(std::string filename, std::vector<std::string> aliases)
if (filename.find('/') == std::string::npos)
filename = "./" + filename;
- if (!loaded_plugins.count(filename)) {
+ if (!loaded_plugins.count(filename) && !loaded_python_plugins.count(filename)) {
#ifdef WITH_PYTHON
if(boost::algorithm::ends_with(filename, ".py"))