Make sure potential_names is not dependent on hashing order

This commit is contained in:
Joost Molenaar 2015-11-03 15:17:35 +01:00
parent 62be954577
commit 7c674fc19c

View file

@ -165,7 +165,7 @@ class PluginLoader(object):
else:
suffixes = ['.py', '']
potential_names = frozenset('%s%s' % (name, s) for s in suffixes)
potential_names = list('%s%s' % (name, s) for s in suffixes)
for full_name in potential_names:
if full_name in self._plugin_path_cache:
return self._plugin_path_cache[full_name]