diff --git a/lemur/plugins/base/v1.py b/lemur/plugins/base/v1.py index 7026c99f..ec1e74ed 100644 --- a/lemur/plugins/base/v1.py +++ b/lemur/plugins/base/v1.py @@ -110,7 +110,7 @@ class IPlugin(local): def get_option(self, name, options): for o in options: - if o.get(name): + if o.get('name') == name: return o['value']