Merge pull request #111 from kevgliss/105

Closes #105
This commit is contained in:
kevgliss 2015-10-02 16:26:02 -07:00
commit 34c6f1bf4d
2 changed files with 3 additions and 2 deletions

View File

@ -22,7 +22,8 @@ class InstanceManager(object):
def add(self, class_path):
self.cache = None
self.class_list.append(class_path)
if class_path not in self.class_list:
self.class_list.append(class_path)
def remove(self, class_path):
self.cache = None

View File

@ -86,7 +86,7 @@ class PluginsList(AuthenticatedResource):
if args['type']:
return list(plugins.all(plugin_type=args['type']))
return plugins.all()
return list(plugins.all())
class Plugins(AuthenticatedResource):