Fixing this so it pulls the named option
This commit is contained in:
parent
96c3ab7f9d
commit
dbfd6b1e17
|
@ -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']
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue