when searching for a plugin only look for a regular file
This commit is contained in:
parent
807e602228
commit
4430d0f5a6
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class PluginLoader(object):
|
|||
|
||||
for i in self._get_paths():
|
||||
path = os.path.join(i, "%s%s" % (name, suffix))
|
||||
if os.path.exists(path):
|
||||
if os.path.isfile(path):
|
||||
self._plugin_path_cache[name] = path
|
||||
return path
|
||||
|
||||
|
|
Loading…
Reference in a new issue