Make sure we don't try to inspect DOCUMENTATION, if the plugin doesn't have any (#35017)

pull/35865/head
Matt Martz 7 years ago committed by GitHub
parent 3a4b69096f
commit a451613dd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -214,7 +214,7 @@ class PluginLoader:
if type_name in ('callback', 'connection', 'inventory', 'lookup', 'shell'):
dstring = get_docstring(path, fragment_loader, verbose=False, ignore_errors=True)[0]
if 'options' in dstring and isinstance(dstring['options'], dict):
if dstring and 'options' in dstring and isinstance(dstring['options'], dict):
C.config.initialize_plugin_configuration_definitions(type_name, name, dstring['options'])
display.debug('Loaded config def from plugin (%s/%s)' % (type_name, name))

Loading…
Cancel
Save