Fixed! It's working!

git-svn-id: https://callirhoe.googlecode.com/svn/branches/phantome@176 81c8bb96-aa45-f2e2-0eef-c4fa4a15c6df
This commit is contained in:
ph4ntome@gmail.com 2014-10-31 14:22:04 +00:00
parent d8e74ff812
commit fbd5768841

View File

@ -61,7 +61,10 @@ def plugin_list(cat):
@rtype: [str,...] @rtype: [str,...]
""" """
plugin_paths = get_plugin_paths() plugin_paths = get_plugin_paths()
return available_files(plugin_paths[0], cat) + available_files(plugin_paths[1], cat) result = []
for path in plugin_paths:
result += available_files(path, cat)
return result
# cat = lang (category) # cat = lang (category)
# longcat = language # longcat = language